16 lines
292 B
Plaintext
Raw Normal View History

#!/usr/bin/env ssm
2015-09-04 16:47:37 +03:00
unset reload
2014-03-01 22:34:13 +04:00
service_type='oneshot'
2015-06-18 12:38:49 +03:00
service_command='/usr/bin/sysctl'
2014-07-03 11:05:52 +04:00
2015-09-04 16:47:37 +03:00
pre_start() {
for i in /etc/sysctl.conf /etc/sysctl.d/* /usr/lib/sysctl.d/*; do
[[ -f "$i" ]] && {
sysctl_config_files+=( "$i" )
}
done
service_command+=( -p "${sysctl_config_files[@]}" )
2015-09-04 16:47:37 +03:00
}