diff options
Diffstat (limited to 'sbin/init.d/sysprofiles')
-rwxr-xr-x | sbin/init.d/sysprofiles | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sbin/init.d/sysprofiles b/sbin/init.d/sysprofiles index 279215a..7ecd797 100755 --- a/sbin/init.d/sysprofiles +++ b/sbin/init.d/sysprofiles @@ -1,3 +1,3 @@ #!/bin/bash cfgfile=$1 -. /sbin/init.d/functions -f $cfgfile --list_sections|(last=;while read svc rest; do if [ "$svc" != "$last" ]; then /sbin/init.d/$svc -f $cfgfile --auto start; fi; last=$svc; done) +. /sbin/init.d/functions -f $cfgfile --list_sections|(last=;while read svc rest; do if [ "$svc" != "$last" ]; then /sbin/init.d/$svc -f $cfgfile --auto start </dev/null; fi; last=$svc; done) |