Playbooks to a new Lilik
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.
 
 
 
 

15 lines
445 B

lxc.include = /usr/share/lxc/config/debian.common.conf
lxc.utsname = {{ vm_name }}
lxc.rootfs = /dev/sysvg/vm_{{ vm_name }}
lxc.tty = 4
lxc.arch = amd64
lxc.network.type = veth
lxc.network.flags = up
lxc.network.link = br0
lxc.network.name = eth0
lxc.network.ipv4 = {{ hostvars[vm_name]['ansible_host'] }}/24
lxc.network.ipv4.gateway = {{ hostvars['ext_gateway']['ansible_host'] }}
lxc.start.auto = {% if auto_start %}1{% else %}0{% endif %}