2019-04-06 23:50:54 +02:00
|
|
|
# Default settings in the default section (obviously)
|
|
|
|
[default]
|
|
|
|
# version_diff represents (hopefully) the compatibility change for the package.
|
|
|
|
# It works by starting with the number of dots in the version scheme + 1, and
|
|
|
|
# then removes 1 for every field that is the same in the current and new
|
|
|
|
# version. Some examples:
|
|
|
|
# 1.0.0 -> 1.0.0 (level 0, a reinstall of the same version)
|
|
|
|
# 1.0.0 -> 1.0.1 (level 1)
|
|
|
|
# 1.0.0 -> 1.1.0 (level 2)
|
|
|
|
# 1.0.0 -> 2.0.0 (level 3)
|
|
|
|
# 1.0.0.0 -> 2.0.0.0 (level 4)
|
|
|
|
# 1.0.1 -> 1.0.1.1 (level 2, because that's how it turned out...)
|
|
|
|
min_version_diff=2
|
|
|
|
|
|
|
|
# sau can reboot on system upgrades (FreeBSD) or if the service restarts does
|
|
|
|
# not close all deleted files (any platform)
|
|
|
|
do_reboot=no
|
|
|
|
|
2019-04-09 18:13:37 +02:00
|
|
|
# FreeBSD system update (freebsd-update fetch install, not freebsd-update upgrade)
|
2019-04-07 19:27:15 +02:00
|
|
|
do_system_upgrade=yes
|
2019-04-09 18:13:37 +02:00
|
|
|
|
|
|
|
# upgrade packages
|
2019-04-07 19:27:15 +02:00
|
|
|
do_package_upgrade=yes
|
2019-04-09 18:13:37 +02:00
|
|
|
|
|
|
|
# restart services affected by previous upgrades
|
2019-04-07 19:27:15 +02:00
|
|
|
do_service_restart=yes
|
2019-04-09 20:56:55 +02:00
|
|
|
# what to do with identified services by default. See services section.
|
|
|
|
default_service_policy=ignore
|
2019-04-07 19:27:15 +02:00
|
|
|
|
2019-04-09 18:13:37 +02:00
|
|
|
# do depclean on Gentoo
|
|
|
|
do_depclean=yes
|
|
|
|
|
|
|
|
# to only write to stderr when something unexpected happens or manual action is required
|
|
|
|
# set stderr_loglevel to warning
|
|
|
|
stderr_loglevel=debug
|
|
|
|
syslog_loglevel=info
|
|
|
|
|
2019-04-06 23:50:54 +02:00
|
|
|
|
|
|
|
# The packages section contains <package>=<version_diff> pairs to override the
|
|
|
|
# default min_version_diff. Note that package naming may differ depending on
|
|
|
|
# platform
|
|
|
|
[packages]
|
|
|
|
# Gentoo kernel stuff should be updated manually
|
|
|
|
sys-kernel/gentoo-sources=0
|
|
|
|
sys-kernel/spl=0
|
|
|
|
sys-fs/zfs-kmod=0
|
|
|
|
dev-db/postgresql=1
|
|
|
|
|
|
|
|
# FreeBSD uses the short package name
|
|
|
|
gitlab=1
|
|
|
|
|
|
|
|
|
2019-04-09 20:56:55 +02:00
|
|
|
# The processes section contains <process-name>=<service-name>
|
2019-04-06 23:50:54 +02:00
|
|
|
# The process name is whatever psutil returns and I haven't checked if it's
|
|
|
|
# trustworthy, so it's probably not... Use with care.
|
2019-04-09 20:56:55 +02:00
|
|
|
# To ignore processes, just add them with empty values
|
|
|
|
[processes]
|
2019-04-06 23:50:54 +02:00
|
|
|
gitlab-workhorse=gitlab
|
2019-04-09 20:56:55 +02:00
|
|
|
qemu-system-x86_64=
|
|
|
|
|
|
|
|
# The services section contains restart policy for specific services.
|
2019-04-09 21:53:55 +02:00
|
|
|
# valid policies are 'ignore', 'warn', 'restart' and 'silent-restart'.
|
|
|
|
# 'silent-restart' is like 'restart', but will not log a warning when
|
|
|
|
# the service is restarted.
|
2019-04-09 20:56:55 +02:00
|
|
|
[services]
|
|
|
|
libvirtd=ignore
|
2019-04-09 21:53:55 +02:00
|
|
|
php-fpm=silent-restart
|