From 88ac609897fd2a230d7f44115a696c4ffa4c40b7 Mon Sep 17 00:00:00 2001 From: Yohann D'ANELLO Date: Tue, 8 Jun 2021 17:00:27 +0200 Subject: [PATCH] Replace template_path by template_fullpath in Ansible header Signed-off-by: Yohann D'ANELLO --- group_vars/all/all.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/group_vars/all/all.yml b/group_vars/all/all.yml index bff276b..74f355a 100644 --- a/group_vars/all/all.yml +++ b/group_vars/all/all.yml @@ -1,14 +1,14 @@ --- # Custom header -dirty: "{% if template_path is defined %}{{ lookup('pipe', 'git diff --quiet -- ' + template_path | quote + ' || echo dirty') }}{% else %}{{ lookup('pipe', 'git diff --quiet || echo dirty') }}{% endif %}" +dirty: "{% if template_fullpath is defined %}{{ lookup('pipe', 'git diff --quiet -- ' + template_fullpath | quote + ' || echo dirty') }}{% else %}{{ lookup('pipe', 'git diff --quiet || echo dirty') }}{% endif %}" ansible_header: | +++++++++++++++++++++++++++++++++++++++++++++++++++ Ansible managed, don't modify the file locally. See https://gitlab.crans.org/ynerant/templier-ansible. - {% if template_path is defined %}{% set _, rpath = template_path.split('roles/', 1) %}Commit: {% if dirty %}({{dirty}}) {% endif %}{{ lookup('pipe', 'git log -n 1 --pretty=format:%H -- ' + template_path | quote) }} + {% if template_fullpath is defined %}{% set _, rpath = template_fullpath.split('roles/', 1) %}Commit: {% if dirty %}({{dirty}}) {% endif %}{{ lookup('pipe', 'git log -n 1 --pretty=format:%H -- ' + template_fullpath | quote) }} {% if dirty %}Run by: {{ ansible_env.SUDO_USER }} - {% else %}Author: {{ lookup('pipe', 'git log -n 1 --pretty=format:%an -- ' + template_path | quote) }} + {% else %}Author: {{ lookup('pipe', 'git log -n 1 --pretty=format:%an -- ' + template_fullpath | quote) }} {% endif %}Template: roles/{{ rpath }} {% else %} Run by: {{ ansible_env.SUDO_USER }}