From 49b6cf69734d37e49b2276c92d43ceed85e8ddca Mon Sep 17 00:00:00 2001 From: Kevin Fenzi Date: Mon, 16 Oct 2017 19:41:58 +0000 Subject: [PATCH] fix syntax --- roles/grokmirror_mirror/tasks/main.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/roles/grokmirror_mirror/tasks/main.yml b/roles/grokmirror_mirror/tasks/main.yml index 269a99ada0..d95c2d331f 100644 --- a/roles/grokmirror_mirror/tasks/main.yml +++ b/roles/grokmirror_mirror/tasks/main.yml @@ -14,21 +14,21 @@ - grokmirror-mirror - name: install grokmirror repos config file from template - template: src=repos.conf dest={{grokmirror_topdir}}/repos.conf user=root group=root mode=644 + template: src=repos.conf dest={{grokmirror_topdir}}/repos.conf owner=root group=root mode=644 tags: - grokmirror-mirror - name: install grokmirror fsck config file from template - template: src=fsck.conf dest={{grokmirror_topdir}}/fsck.conf user=root group=root mode=644 + template: src=fsck.conf dest={{grokmirror_topdir}}/fsck.conf owner=root group=root mode=644 tags: - grokmirror-mirror - name: install grokmirror repos cron job - template: src=grokmirror.cron dest=/etc/cron.d/grokmirror.cron user=root group=root mode=644 + template: src=grokmirror.cron dest=/etc/cron.d/grokmirror.cron owner=root group=root mode=644 tags: - grokmirror-mirror - name: install grokmirror fsck cron job - template: src=grokfsck.cron dest=/etc/cron.d/grokfsck.cron user=root group=root mode=644 + template: src=grokfsck.cron dest=/etc/cron.d/grokfsck.cron owner=root group=root mode=644 tags: - grokmirror-mirror