summaryrefslogtreecommitdiffstats
path: root/web_wizard
diff options
context:
space:
mode:
authorNicolas Vigier <nvigier@mandriva.com>2008-03-28 15:38:36 +0000
committerNicolas Vigier <nvigier@mandriva.com>2008-03-28 15:38:36 +0000
commitb90c525b28bcbc65201b049161b3aab1566e6886 (patch)
tree42cd02951b67aeffaf790aef4c4e88053539f9be /web_wizard
parentc0fc5c2ceaeeb7d758467067cb312aa1d9ca322f (diff)
downloaddrakwizard-b90c525b28bcbc65201b049161b3aab1566e6886.tar
drakwizard-b90c525b28bcbc65201b049161b3aab1566e6886.tar.gz
drakwizard-b90c525b28bcbc65201b049161b3aab1566e6886.tar.bz2
drakwizard-b90c525b28bcbc65201b049161b3aab1566e6886.tar.xz
drakwizard-b90c525b28bcbc65201b049161b3aab1566e6886.zip
add check_starts_on_boot function
Diffstat (limited to 'web_wizard')
-rwxr-xr-xweb_wizard/Apache.pm7
1 files changed, 1 insertions, 6 deletions
diff --git a/web_wizard/Apache.pm b/web_wizard/Apache.pm
index b35905a7..6e1972ac 100755
--- a/web_wizard/Apache.pm
+++ b/web_wizard/Apache.pm
@@ -248,12 +248,7 @@ EOF
sub do_it {
$::testing and return;
my $in = 'interactive'->vnew('su', 'Apache');
- if (!services::starts_on_boot('httpd')) {
- my $start_service = $in->ask_yesorno(N("Start %s server on boot", "httpd"), N("Would you like to start the %s service automatically on every boot?", "httpd"), 1);
- if ($start_service) {
- services::start_service_on_boot('httpd');
- }
- }
+ check_starts_on_boot($in, 'httpd');
my $w = $in->wait_message(N("Apache server"), N("Configuring your system as Apache server ..."));
my $that = "localhost";