From 3a687c7e6b8908a42cc23d683f30f4bfcbc54fba Mon Sep 17 00:00:00 2001 From: Kevin Fenzi Date: Wed, 6 Aug 2014 07:11:05 +0000 Subject: [PATCH] Fix duplicate argument --- roles/releng/tasks/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/releng/tasks/main.yml b/roles/releng/tasks/main.yml index dbcf40f284..6fc86f89cf 100644 --- a/roles/releng/tasks/main.yml +++ b/roles/releng/tasks/main.yml @@ -14,7 +14,7 @@ action: group name=ftpsync gid=263 system=yes state=present - name: add ftpsync user - action: user name=ftpsync uid=263 group=ftpsync system=yes createhome=yes system=yes state=present + user: name=ftpsync uid=263 group=ftpsync createhome=yes system=yes state=present - name: add the ftpsync update-fullfilelist script action: copy src="{{ files }}/releng/update-fullfilelist" dest=/usr/local/bin/update-fullfilelist owner=ftpsync group=ftpsync mode=555