You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
continuous-integration/drone/push Build is passing
Details
|
9 months ago | |
---|---|---|
.. | ||
defaults | 9 months ago | |
files | 9 months ago | |
meta | 2 years ago | |
tasks | 9 months ago | |
tests | 6 years ago | |
.kitchen.yml | 6 years ago | |
README.md | 3 years ago |
README.md
etc-git
Put /etc under Git version control.
Tasks
The main part (installation and configuration) is in the tasks/main.yml
file.
There is also an independant task that can be executed to commit changes made in /etc/.git
, for example when a playbook is run :
- name: My Splendid Playbook
[…]
pre_tasks:
- include_role:
name: evolix/etc-git
tasks_from: commit.yml
vars:
commit_message: "Ansible pre-run my splendid playbook"
roles :
[…]
post_tasks:
- include_role:
name: evolix/etc-git
tasks_from: commit.yml
vars:
commit_message: "Ansible post-run my splendid playbook"
Available variables
etc_git_monitor_status
: monitor uncommited changes in /etc/.git (default:True
) ;