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.
26 lines
518 B
26 lines
518 B
- name: installing "{{ item }}"
|
|
package:
|
|
name: "{{ item }}"
|
|
state: present
|
|
with_items:
|
|
- libvirt
|
|
- ebtables
|
|
- dnsmasq
|
|
- bridge-utils
|
|
- openbsd-netcat
|
|
- name: start libvirtd
|
|
service:
|
|
name: libvirtd
|
|
state: started
|
|
- name: allow incoming INPUT traffic on virbr0
|
|
iptables:
|
|
chain: INPUT
|
|
jump: ACCEPT
|
|
in_interface: virbr0
|
|
- name: allow incoming FORWARD traffic on virbr0
|
|
iptables:
|
|
chain: FORWARD
|
|
jump: ACCEPT
|
|
in_interface: virbr0
|
|
with_items:
|
|
- 22
|
|
|