mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-07 22:02:50 +00:00
Network Getting started docs (#36337)
* first draft of getting started guide
This commit is contained in:
committed by
John R Barker
parent
b96ab46566
commit
51a010a696
@@ -0,0 +1,14 @@
|
||||
---
|
||||
|
||||
- name: Network Getting Started First Playbook
|
||||
connection: network_cli
|
||||
hosts: all
|
||||
tasks:
|
||||
|
||||
- name: Get config for VyOS devices
|
||||
vyos_facts:
|
||||
gather_subset: all
|
||||
|
||||
- name: Display the config
|
||||
debug:
|
||||
msg: "The hostname is {{ ansible_net_hostname }} and the OS is {{ ansible_net_version }}"
|
||||
@@ -0,0 +1,28 @@
|
||||
---
|
||||
|
||||
- name: Network Getting Started First Playbook Extended
|
||||
connection: network_cli
|
||||
hosts: all
|
||||
tasks:
|
||||
|
||||
- name: Get config for VyOS devices
|
||||
vyos_facts:
|
||||
gather_subset: all
|
||||
|
||||
- name: Display the config
|
||||
debug:
|
||||
msg: "The hostname is {{ ansible_net_hostname }} and the OS is {{ ansible_net_version }}"
|
||||
|
||||
- name: Update the hostname
|
||||
vyos_config:
|
||||
backup: yes
|
||||
lines:
|
||||
- set system host-name vyos-changed
|
||||
|
||||
- name: Get changed config for VyOS devices
|
||||
vyos_facts:
|
||||
gather_subset: all
|
||||
|
||||
- name: Display the changed config
|
||||
debug:
|
||||
msg: "The hostname is {{ ansible_net_hostname }} and the OS is {{ ansible_net_version }}"
|
||||
Reference in New Issue
Block a user