summaryrefslogtreecommitdiffstats
path: root/web_wizard
diff options
context:
space:
mode:
authorThierry Vignaud <tv@mageia.org>2012-10-17 17:18:40 +0000
committerThierry Vignaud <tv@mageia.org>2012-10-17 17:18:40 +0000
commit108c9ad989aeeff143bebf230946a50ae5e8ae3e (patch)
tree2a9a4074cb511ed13987785ecd9bdfa42a8b8361 /web_wizard
parent32be07bcf5253e7f321dccd2efd40b5fffb1011c (diff)
downloaddrakwizard-108c9ad989aeeff143bebf230946a50ae5e8ae3e.tar
drakwizard-108c9ad989aeeff143bebf230946a50ae5e8ae3e.tar.gz
drakwizard-108c9ad989aeeff143bebf230946a50ae5e8ae3e.tar.bz2
drakwizard-108c9ad989aeeff143bebf230946a50ae5e8ae3e.tar.xz
drakwizard-108c9ad989aeeff143bebf230946a50ae5e8ae3e.zip
do not reinvent services::restart_or_start()
Diffstat (limited to 'web_wizard')
-rwxr-xr-xweb_wizard/Apache.pm6
1 files changed, 1 insertions, 5 deletions
diff --git a/web_wizard/Apache.pm b/web_wizard/Apache.pm
index 12d4687f..8fea5014 100755
--- a/web_wizard/Apache.pm
+++ b/web_wizard/Apache.pm
@@ -272,11 +272,7 @@ sub do_it {
chg_docroot();
chg_user_dir();
- if (services::is_service_running('httpd')) {
- services::restart('httpd');
- } else {
- services::start('httpd');
- }
+ services::restart_or_start('httpd');
undef $w;
check_started($o->{var}{servicecheck});
}