blob: 1c07980daaeaa9925e1205dc2f922907912b882e (
plain)
1
2
3
4
5
6
7
8
9
10
|
# vyos.py in plugins and module_utils/network covered by these as well
# hit NetworkConfig
- name: configure simple config command
vyos.vyos.vyos_config:
lines: set system host-name smoke
- name: return host name to inventory_hostname
vyos.vyos.vyos_config:
lines: set system host-name {{ inventory_hostname_short }}
match: none
|