summaryrefslogtreecommitdiff
path: root/etc-init.d/40git-pre-commit-hook
diff options
context:
space:
mode:
Diffstat (limited to 'etc-init.d/40git-pre-commit-hook')
-rwxr-xr-xetc-init.d/40git-pre-commit-hook16
1 files changed, 0 insertions, 16 deletions
diff --git a/etc-init.d/40git-pre-commit-hook b/etc-init.d/40git-pre-commit-hook
deleted file mode 100755
index e7b58e0..0000000
--- a/etc-init.d/40git-pre-commit-hook
+++ /dev/null
@@ -1,16 +0,0 @@
-#!/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