diff options
-rw-r--r-- | perl-install/network/tools.pm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/perl-install/network/tools.pm b/perl-install/network/tools.pm index 4b5a72a3d..ac7ab6863 100644 --- a/perl-install/network/tools.pm +++ b/perl-install/network/tools.pm @@ -127,15 +127,15 @@ sub write_initscript { case "$1" in start) - echo -n "Checking internet connections to start at boot: " - $connect_file --boot_time + echo -n "Checking internet connections to start at boot: " } . " + $connect_file --boot_time" . q{ touch /var/lock/subsys/internet echo -n internet echo ;; stop) - echo -n "Stopping internet connection if needed: " - $disconnect_file + echo -n "Stopping internet connection if needed: " } . " + $disconnect_file" . q{ echo -n internet echo rm -f /var/lock/subsys/internet |