diff options
| author | Joey Hess <joey@kodama.kitenet.net> | 2007-11-05 15:51:52 -0500 |
|---|---|---|
| committer | Joey Hess <joey@kodama.kitenet.net> | 2007-11-05 15:51:52 -0500 |
| commit | 3e6cf464cff47d22f4ac4b4313fda68f32ae1ea8 (patch) | |
| tree | d2b155927e17939b42f85fc93a0498d1702a19e0 /etc-init.d/40git-pre-commit-hook | |
| parent | 32ff749a8d5c8be76a3221abc41398477207006e (diff) | |
starting implementation
Diffstat (limited to 'etc-init.d/40git-pre-commit-hook')
| -rwxr-xr-x | etc-init.d/40git-pre-commit-hook | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/etc-init.d/40git-pre-commit-hook b/etc-init.d/40git-pre-commit-hook new file mode 100755 index 0000000..e7b58e0 --- /dev/null +++ b/etc-init.d/40git-pre-commit-hook @@ -0,0 +1,16 @@ +#!/bin/sh +set -e +if [ -x .git/hooks/pre-commit ]; then + if ! grep -q etc-pre-commit .git/hooks/pre-commit; then + echo "warning: .git/hooks/pre-commit needs to be manually modifed to run etc-pre-commit" >&2 + fi +else + echo <<EOF >>.git/hooks/pre-commit +#!/bin/sh +# pre-commit hook for etckeeper. Calls etc-pre-commit to store metadata +# and do sanity checks. +set -e +etc-pre-commit +EOF + chmod +x .git/hooks/pre-commit +fi |
