You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
551 B
Plaintext
18 lines
551 B
Plaintext
7 years ago
|
#!/bin/sh
|
||
|
# Script that can be run daily to autocommit /etc changes.
|
||
|
set -e
|
||
|
if [ -x /usr/bin/etckeeper ] && [ -e /etc/etckeeper/etckeeper.conf ]; then
|
||
|
# avoid autocommit if an install run is in progress
|
||
|
lockfile=/var/cache/etckeeper/packagelist.pre-install
|
||
|
if [ -e "$lockfile" ] && [ -n "$(find "$lockfile" -mtime +1)" ]; then
|
||
|
rm -f "$lockfile" # stale
|
||
|
fi
|
||
|
if [ ! -e "$lockfile" ]; then
|
||
|
AVOID_SPECIAL_FILE_WARNING=1
|
||
|
export AVOID_SPECIAL_FILE_WARNING
|
||
|
if etckeeper unclean; then
|
||
|
etckeeper commit "daily autocommit" >/dev/null
|
||
|
fi
|
||
|
fi
|
||
|
fi
|