From 5bc2d870007520397b1c1a9d9690b2d7e46c6f2c Mon Sep 17 00:00:00 2001 From: Jeremy Dubois Date: Wed, 26 Aug 2020 09:50:05 +0200 Subject: [PATCH] Fix commit_etc_git.yml task author Author in two parts was considered as "author" + "" instead of "author " --- tasks/commit_etc_git.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tasks/commit_etc_git.yml b/tasks/commit_etc_git.yml index 3330dad..e73dc85 100644 --- a/tasks/commit_etc_git.yml +++ b/tasks/commit_etc_git.yml @@ -15,8 +15,8 @@ git add -A . && git commit -m "{{ commit_message | default('Ansible run') }}" - --author="{{ ansible_env.SUDO_USER | default('Root') }}" - "<{{ ansible_env.SUDO_USER | default('Root') }}@{{ general_technical_realm }}>" + --author="{{ ansible_env.SUDO_USER | default('Root') }} + <{{ ansible_env.SUDO_USER | default('Root') }}@{{ general_technical_realm }}>" args: chdir: /etc register: etc_commit_end_evolinux