master
conf 41 lines 1.97 KB
Raw
1 # Configuration for netdata-updater.sh script.
2 #
3 # When run non-interactively, the updater script will delay some
4 # random number of seconds up to NETDATA_UPDATER_JITTER before
5 # actually running the update. The default is 3600 (one hour). Most
6 # users should not need to change this.
7 #NETDATA_UPDATER_JITTER="3600"
8
9 # By default, the updater will update to new major versions without asking
10 # for user confirmation once we consider them ready for general usage.
11 #
12 # You can override this behavior by setting NETDATA_ACCEPT_MAJOR_VERSIONS
13 # to a space separated list of major versions you are willing to update
14 # to. Attempts to update to newer major versions not listed in this variable
15 # will be treated as a fatal error.
16 #
17 # An empty value is equivalent to the default behavior.
18 #
19 # This only applies to static builds and local builds. If you are using
20 # our native packages, use your package manager’s existing functionality
21 # to prevent updates (for example, pinning versions on APT-based systems,
22 # or the DNF versionlock plugin on RHEL/Fedora).
23 #
24 # To lock yourself to a specific major version, set this value to exactly
25 # that major version number. For example, to stay on version 1.x even
26 # if 2.x has been released, set this to a value of `1`.
27 #NETDATA_ACCEPT_MAJOR_VERSIONS=''
28
29 # On systems using our native packages, the updater will by default
30 # attempt to install optional plugin packages that would be installed by
31 # default on clean installs if those packages are supported on the system.
32 #
33 # This behavior can be disabled on a per-package basis using the below
34 # variables. Setting the variable to a value other than 0 will disable
35 # the corresponding package (note that you still need to remove the package
36 # yourself if you don't want it, this just controls whether the updater
37 # will try to ensure it’s installed or not).
38 #
39 # NETDATA_NO_SYSTEMD_JOURNAL controls the `netdata-plugin-systemd-journal`
40 # package, which provides the systemd journal plugin for Netdata.
41 #NETDATA_NO_SYSTEMD_JOURNAL="0"