New version of salt-formula from Saltstack
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
-
- wlan0:
- network.managed:
- - enabled: True
- - type: eth
- - bridge: br0
-
- br0:
- network.managed:
- - enabled: True
- - type: bridge
- - proto: dhcp
- - require:
- - network: wlan0
-
- libvirt:
- pkg.installed: []
- file.managed:
- - name: /etc/sysconfig/libvirtd
- - contents: 'LIBVIRTD_ARGS="--listen"'
- - require:
- - pkg: libvirt
- libvirt.keys:
- - require:
- - pkg: libvirt
- service.running:
- - name: libvirtd
- - require:
- - pkg: libvirt
- - network: br0
- - libvirt: libvirt
- - watch:
- - file: libvirt
-
- libvirt-python:
- pkg.installed: []
-
- libguestfs:
- pkg.installed:
- - pkgs:
- - libguestfs
- - libguestfs-tools
-
|