diff --git a/etc/autoupdate.conf b/etc/autoupdate.conf index e7b8af4..1349997 100644 --- a/etc/autoupdate.conf +++ b/etc/autoupdate.conf @@ -10,6 +10,7 @@ # List of services that should not be automatically restarted. # Note: Case patterns (shell "case") may be used. +# By default all services are blacklisted and will not be restarted. #services_blacklist="*" # List of colon separated mappings between program path, the corresponding diff --git a/man/autoupdate.conf.5.adoc b/man/autoupdate.conf.5.adoc index aa80cd3..93cc85d 100644 --- a/man/autoupdate.conf.5.adoc +++ b/man/autoupdate.conf.5.adoc @@ -35,12 +35,14 @@ The default value is `"linux-*"`. Specifies services that should never be automatically restarted, unless they are on the whitelist (see *services_whitelist*). The value is a whitespace separated list of shell patterns describing names of services (e.g. `"++*++"`, `"net.* sshd"`). + -The default value is `"*"`. +The default value is `"*"` (no services will be restarted). *services_whitelist*:: Specifies services that shall be automatically restarted when needed. This list is evaluated before *services_blacklist*. The value is a whitespace separated list of shell patterns describing names of services (e.g. `"nginx s6*"`). ++ +The default value is `""` *programs_services*:: Specifies explicit mapping between programs and services, optionally with a runscript action (command) to perform for restart.