diff options
| -rwxr-xr-x | etc/rc.d/local | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/etc/rc.d/local b/etc/rc.d/local index 42e96bf472c2..5d5e4ba7dcfb 100755 --- a/etc/rc.d/local +++ b/etc/rc.d/local @@ -17,16 +17,20 @@ stop_cmd="local_stop" local_start() { + echo -n 'Starting local daemons:' if [ -f /etc/rc.local ]; then . /etc/rc.local fi + echo '.' } local_stop() { + echo -n 'Shutting down loacal daemons:' if [ -f /etc/rc.shutdown.local ]; then . /etc/rc.shutdown.local fi + echo '.' } load_rc_config $name |
