aboutsummaryrefslogtreecommitdiff
path: root/ansible/roles/lxc-host
diff options
context:
space:
mode:
authorTrygve Laugstøl <trygvis@inamo.no>2018-08-27 20:36:21 +0200
committerTrygve Laugstøl <trygvis@inamo.no>2018-08-27 20:37:42 +0200
commit1c9619633840a0e7588a5fdf6996faddf32e8090 (patch)
tree940c220b53d451d8d3316341c4a111db53ce7bad /ansible/roles/lxc-host
parent9881c25ef9d70c442bf486f85381022432600984 (diff)
downloadinfra-1c9619633840a0e7588a5fdf6996faddf32e8090.tar.gz
infra-1c9619633840a0e7588a5fdf6996faddf32e8090.tar.bz2
infra-1c9619633840a0e7588a5fdf6996faddf32e8090.tar.xz
infra-1c9619633840a0e7588a5fdf6996faddf32e8090.zip
o Disable IPv6 in LXC containers.
o Create LXC configuration from Ansible vars.
Diffstat (limited to 'ansible/roles/lxc-host')
-rw-r--r--ansible/roles/lxc-host/tasks/main.yml23
1 files changed, 23 insertions, 0 deletions
diff --git a/ansible/roles/lxc-host/tasks/main.yml b/ansible/roles/lxc-host/tasks/main.yml
new file mode 100644
index 0000000..a043d4c
--- /dev/null
+++ b/ansible/roles/lxc-host/tasks/main.yml
@@ -0,0 +1,23 @@
+---
+#- debug:
+# msg: key="{{ item.key }}", ipv4="{{ item.value.ipv4 }}"
+# with_dict: "{{ lxc_containers }}"
+- name: Set IPv4 address
+ lineinfile:
+ path: "/var/lib/lxc/{{ item.key }}/config"
+ regexp: "lxc.network.ipv4 *="
+ line: "lxc.network.ipv4 = {{ item.value.ipv4.address }}"
+ with_dict: "{{ lxc_containers }}"
+- name: Set IPv4 gateway
+ lineinfile:
+ path: "/var/lib/lxc/{{ item.key }}/config"
+ regexp: "lxc.network.ipv4.gateway *="
+ line: "lxc.network.ipv4.gateway = {{ item.value.ipv4.gateway }}"
+ insertafter: "lxc.network.ipv4 *="
+ with_dict: "{{ lxc_containers }}"
+- name: Set logfile
+ lineinfile:
+ path: "/var/lib/lxc/{{ item.key }}/config"
+ regexp: "lxc.logfile *="
+ line: "lxc.logfile = /var/lib/lxc/{{ item.key }}/{{ item.key }}.log"
+ with_dict: "{{ lxc_containers }}"