Created
January 25, 2012 07:19
-
-
Save wam/1675197 to your computer and use it in GitHub Desktop.
procps-net upstart file for ubuntu, courtesy Simon Déziel
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# procps-net - set network related sysctls from /etc/sysctl.conf | |
# | |
# This task sets network related kernel sysctl variables from | |
# /etc/sysctl.conf and /etc/sysctl.d | |
description "set network related sysctls from /etc/sysctl.conf" | |
start on net-device-up | |
task | |
script | |
/bin/grep -h ^net\. /etc/sysctl.d/*.conf /etc/sysctl.conf | sysctl -p - || : | |
end script |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment