diff options
author | Derek Jennings <derekjenn@gmail.com> | 2013-08-27 00:59:13 +0100 |
---|---|---|
committer | Derek Jennings <derekjenn@gmail.com> | 2013-08-27 00:59:13 +0100 |
commit | 3916cbf9575d4b4db015fd629fdcaf395724cd9c (patch) | |
tree | 848bd6365f8c8d123f14a0bc12dd91c0d6e9dafc /web_wizard | |
parent | 6a7e38b9afdb0550195c0219ddccd83839c368c0 (diff) | |
download | drakwizard-3916cbf9575d4b4db015fd629fdcaf395724cd9c.tar drakwizard-3916cbf9575d4b4db015fd629fdcaf395724cd9c.tar.gz drakwizard-3916cbf9575d4b4db015fd629fdcaf395724cd9c.tar.bz2 drakwizard-3916cbf9575d4b4db015fd629fdcaf395724cd9c.tar.xz drakwizard-3916cbf9575d4b4db015fd629fdcaf395724cd9c.zip |
fix race condition checking service status (mga#10934)
Diffstat (limited to 'web_wizard')
-rwxr-xr-x | web_wizard/Apache.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/web_wizard/Apache.pm b/web_wizard/Apache.pm index 79395930..a2db5da5 100755 --- a/web_wizard/Apache.pm +++ b/web_wizard/Apache.pm @@ -271,7 +271,7 @@ sub do_it { chg_docroot(); chg_user_dir(); - services::restart_or_start('httpd'); + reload_or_restart('httpd'); undef $w; check_started($o->{var}{servicecheck}); } |