diff options
author | Mike Makonnen <mtm@FreeBSD.org> | 2008-06-22 16:23:39 +0000 |
---|---|---|
committer | Mike Makonnen <mtm@FreeBSD.org> | 2008-06-22 16:23:39 +0000 |
commit | f27ca6ea2f076ba100c97e139e58caaf74103dab (patch) | |
tree | 912363ecc3eb710fbd94ae6ba5bdeb0297c556df /etc | |
parent | 3c81343da60d7894879c1adc4af63115d63fb6d4 (diff) | |
download | src-f27ca6ea2f076ba100c97e139e58caaf74103dab.tar.gz src-f27ca6ea2f076ba100c97e139e58caaf74103dab.zip |
Notes
Diffstat (limited to 'etc')
-rwxr-xr-x | etc/rc.d/local | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/etc/rc.d/local b/etc/rc.d/local index 1901cb4ccc72..61a08523a46e 100755 --- a/etc/rc.d/local +++ b/etc/rc.d/local @@ -16,20 +16,20 @@ stop_cmd="local_stop" local_start() { - echo -n 'Starting local daemons:' if [ -f /etc/rc.local ]; then + echo -n 'Starting local daemons:' . /etc/rc.local + echo '.' fi - echo '.' } local_stop() { - echo -n 'Shutting down local daemons:' if [ -f /etc/rc.shutdown.local ]; then + echo -n 'Shutting down local daemons:' . /etc/rc.shutdown.local + echo '.' fi - echo '.' } load_rc_config $name |