Initial commit

This commit is contained in:
ariane
2021-03-18 15:42:28 +00:00
committed by root
commit e53cb04f1a
973 changed files with 23055 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
#!/bin/sh
set -e
# Used by .etckeeper to run a command if the file it acts on
# (the last parameter) exists.
maybe () {
command="$1"
shift 1
if eval [ -e "\"\$$#\"" ]; then
"$command" "$@"
fi
}
# Yes, this runs code from the repository. As documented, etckeeper-init
# should only be run on repositories you trust.
if [ -e .etckeeper ]; then
. ./.etckeeper
else
touch .etckeeper
chmod 600 .etckeeper
fi