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 /ftp_wizard/Proftpd.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 'ftp_wizard/Proftpd.pm')
-rwxr-xr-x | ftp_wizard/Proftpd.pm | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/ftp_wizard/Proftpd.pm b/ftp_wizard/Proftpd.pm index 70cb2f8d..0399966e 100755 --- a/ftp_wizard/Proftpd.pm +++ b/ftp_wizard/Proftpd.pm @@ -58,13 +58,13 @@ $o->{pages} = { next => 'summary' }, warning_dhcp => { - name => N('Warning.'), - data => [ { label => N('Warning\nYou are in dhcp, server may not work with your configuration.') } ], + name => N('Warning.') . "\n\n" . N('Warning\nYou are in dhcp, server may not work with your configuration.'), + ignore => 1, next => 'config' }, must_be_root => { - name => N('Error.'), - data => [ { label => N('Sorry, you must be root to do this...') } ], + name => N('Error.') . "\n\n" . N('Sorry, you must be root to do this...'), + ignore => 1, next => 'config' }, summary => { @@ -82,8 +82,7 @@ needed to configure your FTP Server') . "\n\n" . N('To accept these values, and next => 'end' }, end => { - name => N('Congratulation'), - data => [ { label => N('The wizard successfully configured your Intranet/Internet FTP Server') } ], + name => N('Congratulation') . "\n\n" . N('The wizard successfully configured your Intranet/Internet FTP Server'), end => 1, next => 0 }, |