diff options
author | Antoine Ginies <aginies@mandriva.com> | 2004-02-06 15:09:06 +0000 |
---|---|---|
committer | Antoine Ginies <aginies@mandriva.com> | 2004-02-06 15:09:06 +0000 |
commit | e6792ed6adcb6858b1c79b93a9ad092e4862131c (patch) | |
tree | e623c17d4f238400174a55615a72234d963d0d6e /pxe_wizard | |
parent | 12502daf06f9fcb189684529ede9a9dca5ba2045 (diff) | |
download | drakwizard-e6792ed6adcb6858b1c79b93a9ad092e4862131c.tar drakwizard-e6792ed6adcb6858b1c79b93a9ad092e4862131c.tar.gz drakwizard-e6792ed6adcb6858b1c79b93a9ad092e4862131c.tar.bz2 drakwizard-e6792ed6adcb6858b1c79b93a9ad092e4862131c.tar.xz drakwizard-e6792ed6adcb6858b1c79b93a9ad092e4862131c.zip |
now use check_started
Diffstat (limited to 'pxe_wizard')
-rw-r--r-- | pxe_wizard/Pxe.pm | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/pxe_wizard/Pxe.pm b/pxe_wizard/Pxe.pm index 48aa7d4b..d53f1968 100644 --- a/pxe_wizard/Pxe.pm +++ b/pxe_wizard/Pxe.pm @@ -275,6 +275,13 @@ $o->{pages} = { end => 1, next => 0 }, + error_end => { + name => N("Failed"), + data => [ { label => N("Relaunch drakwizard, and try to change some parameters.") } ], + no_back => 1, + end => 1, + next => 0, + }, }; @@ -510,6 +517,7 @@ EOF tftp_blksize('N'); system("service $_ restart") foreach qw(xinetd pxe); undef $w; + check_started($_) foreach qw(xinetd pxe); } |