Module for viewing and modifying sysctl parameters
Assign a single sysctl parameter for this minion
CLI Example:
salt '*' sysctl.assign net.ipv4.ip_forward 1
Linux hosts using systemd 207 or later ignore /etc/sysctl.conf
and only
load from /etc/sysctl.d/*.conf
. This function will do the proper checks
and return a default config file which will be valid for the Minion. Hosts
running systemd >= 207 will use /etc/sysctl.d/99-salt.conf
.
CLI Example:
salt -G 'kernel:Linux' sysctl.default_config
Return a single sysctl parameter for this minion
CLI Example:
salt '*' sysctl.get net.ipv4.ip_forward
Assign and persist a simple sysctl parameter for this minion. If config
is not specified, a sensible default will be chosen using
sysctl.default_config
.
CLI Example:
salt '*' sysctl.persist net.ipv4.ip_forward 1
Return a list of sysctl parameters for this minion
instead of the live data.
CLI Example:
salt '*' sysctl.show