Riaggiunti gli hook

This commit is contained in:
jigen 2014-10-27 23:08:28 +01:00
parent dcb0278990
commit e86762cfff
2 changed files with 20 additions and 0 deletions

10
etckeeper-commit-post Executable file
View file

@ -0,0 +1,10 @@
#!/bin/sh
PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
which etckeeper > /dev/null 2>&1 || exit 0
etckeeper commit "committing changes in /etc after puppet catalog run"
# Failure of etckeeper should not be fatal.
exit 0

10
etckeeper-commit-pre Executable file
View file

@ -0,0 +1,10 @@
#!/bin/sh
PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
which etckeeper > /dev/null 2>&1 || exit 0
etckeeper commit "saving uncommitted changes in /etc prior to puppet catalog run"
# Failure of etckeeper should not be fatal.
exit 0