30 lines
740 B
YAML
30 lines
740 B
YAML
---
|
|
# Deploy git infos
|
|
# ----------------
|
|
- name: 'GIT | Install script for collecting git info'
|
|
template:
|
|
src: "{{ role_path }}/gen-gitinfos.sh"
|
|
dest: "{{ bin_dir }}/gen-gitinfos.sh"
|
|
mode: a+rwx
|
|
|
|
- name: 'GIT | generate git informations'
|
|
local_action: command {{ role_path }}/gen-gitinfos.sh global
|
|
register: gitinfo
|
|
always_run: yes
|
|
|
|
- name: 'GIT | copy ansible information'
|
|
template:
|
|
src: ansible_git.j2
|
|
dest: /etc/.ansible.ini
|
|
backup: yes
|
|
|
|
- name: 'GIT | generate diff file'
|
|
local_action: command {{ role_path }}/gen-gitinfos.sh diff
|
|
register: gitdiff
|
|
always_run: yes
|
|
|
|
- name: 'GIT | copy git diff file'
|
|
copy:
|
|
content: "{{ gitdiff.stdout }}"
|
|
dest: /etc/.git-ansible.diff
|
|
backup: yes
|