diff options
author | Florent Villard <warly@mandriva.com> | 2003-09-17 17:41:09 +0000 |
---|---|---|
committer | Florent Villard <warly@mandriva.com> | 2003-09-17 17:41:09 +0000 |
commit | 986a271663c7f37797bec011b2ee9379e82ac4fe (patch) | |
tree | add300da8273c0c5dc56f0e13ac72066a80399d1 /web_wizard/Apache.pm | |
parent | b5974747d1a6f7669052ddd42d4a45e4eb7072c1 (diff) | |
download | drakwizard-986a271663c7f37797bec011b2ee9379e82ac4fe.tar drakwizard-986a271663c7f37797bec011b2ee9379e82ac4fe.tar.gz drakwizard-986a271663c7f37797bec011b2ee9379e82ac4fe.tar.bz2 drakwizard-986a271663c7f37797bec011b2ee9379e82ac4fe.tar.xz drakwizard-986a271663c7f37797bec011b2ee9379e82ac4fe.zip |
better check of ip addresses in dhcp
check that server has been run in client dns
check that the program is run as root in drakwizard
remove bad quotes in po
Diffstat (limited to 'web_wizard/Apache.pm')
-rwxr-xr-x | web_wizard/Apache.pm | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/web_wizard/Apache.pm b/web_wizard/Apache.pm index 05b20ea2..b6ccaf57 100755 --- a/web_wizard/Apache.pm +++ b/web_wizard/Apache.pm @@ -57,6 +57,7 @@ my $o = { } else { return (0, N("%s does not exist.", $file)) } + 1 } }; @@ -77,8 +78,8 @@ $o->{pages} = { next => 'ask_mod' }, dhcp_warning => { - name => N('Warning.'), - data => [ { label => N('You are in dhcp, server may not work with your configuration.') } ], + name => N('Warning.') . "\n\n" . N('You are in dhcp, server may not work with your configuration.'), + ignore => 1, next => 'config' }, ask_mod => { @@ -113,11 +114,13 @@ available on your http server via http://www.yourserver.com/~user.'), type => 'b data => [ { label => N('The path you entered does not exist.') } ], + ignore => 1, next => 'ask_dir' }, error => { name => N('Error.'), data => [ { label => N('') } ], + ignore => 1, next => 'config' }, summary => { |