diff options
author | Scott Ullrich <sullrich@pfsense.org> | 2005-05-30 17:50:25 +0000 |
---|---|---|
committer | Scott Ullrich <sullrich@pfsense.org> | 2005-05-30 17:50:25 +0000 |
commit | deebaae1dddec7600dea6a66fd5019f2141dcef2 (patch) | |
tree | 71e822cd95e80fdef8450ffceab391a5a7ddbc2a /etc/rc.bootup | |
parent | bde35c07533bd24a46200edcbe4e9603af966787 (diff) | |
download | pfsense-deebaae1dddec7600dea6a66fd5019f2141dcef2.zip pfsense-deebaae1dddec7600dea6a66fd5019f2141dcef2.tar.gz |
Make all startup commands uniform by correctly outputing when they are done.
Example:
Starting DHCP service...done.
Diffstat (limited to 'etc/rc.bootup')
-rwxr-xr-x | etc/rc.bootup | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/etc/rc.bootup b/etc/rc.bootup index 144b7cb..f32eaea 100755 --- a/etc/rc.bootup +++ b/etc/rc.bootup @@ -127,10 +127,11 @@ print "done.\n"; /* set up Optional interfaces */ - print "Configuring OPT interfaces...\n"; + print "Configuring OPT interfaces..."; mute_kernel_msgs(); interfaces_optional_configure(); unmute_kernel_msgs(); + print "done.\n"; /* setup carp interfaces */ interfaces_carp_configure(); |