mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-11 00:07:08 +02:00
18 lines
196 B
Bash
18 lines
196 B
Bash
#!/bin/sh
|
|
|
|
|
|
[ -x /usr/bin/etckeeper ] || exit
|
|
|
|
case "$1" in
|
|
pre-commit)
|
|
etckeeper pre-install
|
|
;;
|
|
post-commit)
|
|
etckeeper post-install
|
|
;;
|
|
|
|
*)
|
|
echo "$0: Un-handled action: $1"
|
|
;;
|
|
esac
|