From 0bee05104535eae679f43f66ba315539506e201f Mon Sep 17 00:00:00 2001 From: Benjamin Graillot <graillot@crans.org> Date: Sun, 27 Dec 2020 10:34:41 +0100 Subject: [PATCH] [home] fix names --- roles/home/tasks/main.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/roles/home/tasks/main.yml b/roles/home/tasks/main.yml index 019fb9e0..44f49a39 100644 --- a/roles/home/tasks/main.yml +++ b/roles/home/tasks/main.yml @@ -9,7 +9,7 @@ retries: 3 until: apt_result is succeeded -- name: Create dns directory +- name: Create home directory file: path: /var/local/home state: directory @@ -17,7 +17,7 @@ owner: root group: nounou -- name: Set ACL for dns directory +- name: Set ACL for home directory acl: path: /var/local/home default: true @@ -26,7 +26,7 @@ permissions: rwx state: query -- name: Clone dns repository +- name: Clone home repository git: repo: 'http://gitlab.adm.crans.org/nounous/home.git' dest: /var/local/home @@ -34,13 +34,13 @@ - name: Deploy re2o config template: - src: dns/config.py.j2 + src: home/config.py.j2 dest: /var/local/home/config.py mode: 0600 owner: root group: root -- name: Deploy cron for dns +- name: Deploy cron for home template: src: cron.d/home.j2 dest: /etc/cron.d/home -- GitLab