aboutsummaryrefslogtreecommitdiffstats
path: root/community/etckeeper/apk-commit_hook
diff options
context:
space:
mode:
Diffstat (limited to 'community/etckeeper/apk-commit_hook')
-rw-r--r--community/etckeeper/apk-commit_hook22
1 files changed, 0 insertions, 22 deletions
diff --git a/community/etckeeper/apk-commit_hook b/community/etckeeper/apk-commit_hook
deleted file mode 100644
index a662c81a817..00000000000
--- a/community/etckeeper/apk-commit_hook
+++ /dev/null
@@ -1,22 +0,0 @@
-#!/bin/sh
-
-
-[ -x /usr/bin/etckeeper ] || exit
-[ -x /usr/bin/git ] || exit
-[ -x /usr/bin/find ] || exit
-
-AVOID_SPECIAL_FILE_WARNING=1
-export AVOID_SPECIAL_FILE_WARNING
-
-case "$1" in
- pre-commit)
- etckeeper pre-install
- ;;
- post-commit)
- etckeeper post-install
- ;;
-
- *)
- echo "$0: Un-handled action: $1"
- ;;
-esac