diff options
Diffstat (limited to 'init.d/40git-pre-commit-hook')
-rwxr-xr-x | init.d/40git-pre-commit-hook | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/init.d/40git-pre-commit-hook b/init.d/40git-pre-commit-hook new file mode 100755 index 0000000..360be8c --- /dev/null +++ b/init.d/40git-pre-commit-hook @@ -0,0 +1,16 @@ +#!/bin/sh +set -e +if [ -x .git/hooks/pre-commit ]; then + if ! grep -q etckeeper-pre-commit .git/hooks/pre-commit; then + echo "warning: .git/hooks/pre-commit needs to be manually modifed to run etckeeper-pre-commit" >&2 + fi +else + echo <<EOF >>.git/hooks/pre-commit +#!/bin/sh +# pre-commit hook for etckeeper. Calls etckeeper-pre-commit to store metadata +# and do sanity checks. +set -e +etckeeper-pre-commit +EOF + chmod +x .git/hooks/pre-commit +fi |