From 07f1aacba09acc120ead9c74d476060e698614b7 Mon Sep 17 00:00:00 2001 From: jaseg Date: Thu, 4 Apr 2019 20:08:46 +0900 Subject: Fix up clippy networking --- setup_clippy.yml | 20 ++++++++++++++++++-- 1 file changed, 18 insertions(+), 2 deletions(-) (limited to 'setup_clippy.yml') diff --git a/setup_clippy.yml b/setup_clippy.yml index e4416e0..26142b6 100644 --- a/setup_clippy.yml +++ b/setup_clippy.yml @@ -36,6 +36,22 @@ group: root mode: 0664 +- name: Create systemd-nspawn config dir + file: + path: /etc/systemd/nspawn + state: directory + owner: root + group: root + mode: 0775 + +- name: Copy over clippy container config + copy: + src: clippy.nspawn + dest: /etc/systemd/nspawn/clippy.nspawn + owner: root + group: root + mode: 0664 + - name: Enable clippy container auto boot systemd: daemon-reload: yes @@ -64,6 +80,6 @@ # enabled: yes # state: started -- name: Enable clippy container networkd - command: systemctl enable -M clippy systemd-networkd +#- name: Enable clippy container networkd +# command: systemctl enable -M clippy systemd-networkd -- cgit