diff options
author | mtm <mtm@FreeBSD.org> | 2004-01-17 11:15:04 +0000 |
---|---|---|
committer | mtm <mtm@FreeBSD.org> | 2004-01-17 11:15:04 +0000 |
commit | 485c95b43057eceb27128952b134c844030f1067 (patch) | |
tree | 052df644d10990cd8dd46aaa224c0e73ed0b341b | |
parent | 9fe4ef127460bb3c562419ceca7e38abe8b6a0a0 (diff) | |
download | FreeBSD-src-485c95b43057eceb27128952b134c844030f1067.zip FreeBSD-src-485c95b43057eceb27128952b134c844030f1067.tar.gz |
o Rename the start command to conform to rc.d style.
o Move the additional commands list to the end of the
variable initialization to conform to rc.d style
-rw-r--r-- | etc/rc.d/sysctl | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/etc/rc.d/sysctl b/etc/rc.d/sysctl index 6ecade3..0cd065f 100644 --- a/etc/rc.d/sysctl +++ b/etc/rc.d/sysctl @@ -13,12 +13,12 @@ name="sysctl" stop_cmd=":" -start_cmd="FreeBSD_start" +start_cmd="sysctl_start" +reload_cmd="sysctl_start" +lastload_cmd="sysctl_start last" extra_commands="reload lastload" -reload_cmd="FreeBSD_start" -lastload_cmd="FreeBSD_start last" -FreeBSD_start() +sysctl_start() { # # Read in /etc/sysctl.conf and set things accordingly |