diff --git a/etc/rc b/etc/rc index 6b9843b2ca..60dcb341e2 100755 --- a/etc/rc +++ b/etc/rc @@ -413,9 +413,11 @@ echo -n "Launching the init system..." /usr/bin/touch $varrunpath/booting /etc/rc.bootup -# /etc/rc.bootup unset $g['booting'], remove file right now to be -# consistent -/bin/rm $varrunpath/booting +# /etc/rc.bootup unset $g['booting'], and removes file +# Be sure the file is removed to not create troubles after +if [ -f $varrunpath/booting ]; then + /bin/rm $varrunpath/booting +fi # If a shell was selected from recovery # console then just drop to the shell now. diff --git a/etc/rc.bootup b/etc/rc.bootup index 1b150e320a..1adbe15716 100755 --- a/etc/rc.bootup +++ b/etc/rc.bootup @@ -442,6 +442,7 @@ system_syslogd_start(); /* done */ unset($g['booting']); +@unlink("{$g['varrun_path']}/booting"); /* If there are ipsec dynamic hosts try again to reload the tunnels as rc.newipsecdns does */ if ($ipsec_dynamic_hosts) {