From 73abb573feae03b164d3ed4284db4ed4ff26a256 Mon Sep 17 00:00:00 2001 From: Renato Botelho Date: Tue, 24 Dec 2013 12:42:45 -0200 Subject: Only unset $g['booting'] when it was set here --- etc/rc.start_packages | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'etc/rc.start_packages') diff --git a/etc/rc.start_packages b/etc/rc.start_packages index 57de379..1bb8da3 100755 --- a/etc/rc.start_packages +++ b/etc/rc.start_packages @@ -42,8 +42,10 @@ log_error("Restarting/Starting all packages."); setup_library_paths(); /* Detect if we are booting */ -if (file_exists("{$g['varrun_path']}/booting")) +if (!isset($g['booting']) && file_exists("{$g['varrun_path']}/booting")) { $g['booting'] = true; + $unset_g_booting = true; +} $rcfiles = glob(RCFILEPREFIX . "*.sh"); if (!$rcfiles) @@ -77,6 +79,7 @@ if ($shell) { } /* done */ -unset($g['booting']); +if ($unset_g_booting) + unset($g['booting']); ?> -- cgit v1.1