ansible-role-etckeeper/templates/etckeeper.conf.j2

46 lines
1.7 KiB
Text
Raw Normal View History

2015-11-26 15:15:11 +01:00
# The VCS to use.
#VCS="hg"
VCS="git"
#VCS="bzr"
#VCS="darcs"
# Options passed to git commit when run by etckeeper.
GIT_COMMIT_OPTIONS=""
# Options passed to hg commit when run by etckeeper.
HG_COMMIT_OPTIONS=""
# Options passed to bzr commit when run by etckeeper.
2025-09-02 21:46:07 +02:00
BZR_COMMIT_OPTIONS="--quiet"
2015-11-26 15:15:11 +01:00
# Options passed to darcs record when run by etckeeper.
DARCS_COMMIT_OPTIONS="-a"
2016-12-11 22:17:48 +01:00
# Etckeeper includes both a cron job and a systemd timer, which each
# can commit exiting changes to /etc automatically once per day.
# To enable the systemd timer, run: systemctl enable etckeeper.timer
# The cron job is enabled by default; to disable it, uncomment this next line.
AVOID_DAILY_AUTOCOMMITS={{ '1' if etckeeper_avoid_autocommits else '0' }}
2015-11-26 15:15:11 +01:00
# Uncomment the following to avoid special file warning
2016-12-11 22:17:48 +01:00
# (the option is enabled automatically for daily autocommits regardless).
2015-11-26 15:15:11 +01:00
#AVOID_SPECIAL_FILE_WARNING=1
# Uncomment to avoid etckeeper committing existing changes to
# /etc before installation. It will cancel the installation,
# so you can commit the changes by hand.
AVOID_COMMIT_BEFORE_INSTALL={{ '1' if etckeeper_avoid_autocommits else '0' }}
2015-11-26 15:15:11 +01:00
# The high-level package manager that's being used.
2025-09-02 21:46:07 +02:00
# (apt, pacman, pacman-g2, yum, dnf, zypper, apk, xbps, emerge, cave, etc)
HIGHLEVEL_PACKAGE_MANAGER={{ highlevel_package_manager }}
2015-11-26 15:15:11 +01:00
# The low-level package manager that's being used.
2025-09-02 21:46:07 +02:00
# (dpkg, rpm, pacman, pacmatic, pacman-g2, apk, xbps, cave, qlist, etc)
LOWLEVEL_PACKAGE_MANAGER={{ lowlevel_package_manager }}
2015-11-26 15:15:11 +01:00
# To push each commit to a remote, put the name of the remote here.
# (eg, "origin" for git). Space-separated lists of multiple remotes
# also work (eg, "origin gitlab github" for git).
PUSH_REMOTE=""