summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThierry Vignaud <tvignaud@mandriva.org>2004-01-05 12:01:42 +0000
committerThierry Vignaud <tvignaud@mandriva.org>2004-01-05 12:01:42 +0000
commit0d9a2ced4fe0b2356cf3e0049ee5b5a1eb25e1a6 (patch)
tree967ee4cc067712daf9b42a9897c558e92cca1555
parent1e00a64aa7daacaa865af9af6d4c16d60600e381 (diff)
downloaddrakx-backup-do-not-use-0d9a2ced4fe0b2356cf3e0049ee5b5a1eb25e1a6.tar
drakx-backup-do-not-use-0d9a2ced4fe0b2356cf3e0049ee5b5a1eb25e1a6.tar.gz
drakx-backup-do-not-use-0d9a2ced4fe0b2356cf3e0049ee5b5a1eb25e1a6.tar.bz2
drakx-backup-do-not-use-0d9a2ced4fe0b2356cf3e0049ee5b5a1eb25e1a6.tar.xz
drakx-backup-do-not-use-0d9a2ced4fe0b2356cf3e0049ee5b5a1eb25e1a6.zip
fix delete wizard steps
-rwxr-xr-xperl-install/standalone/drakconnect16
1 files changed, 9 insertions, 7 deletions
diff --git a/perl-install/standalone/drakconnect b/perl-install/standalone/drakconnect
index c5ff9587c..5a42e5a9c 100755
--- a/perl-install/standalone/drakconnect
+++ b/perl-install/standalone/drakconnect
@@ -228,14 +228,16 @@ sub del_intf() {
$faillure = $@;
},
next => "end",
- name => sub {
- ($faillure ?
- N("An error occured while deleting the \"%s\" network interface:\n\n%s",
- $intf, $faillure) :
- N("Congratulations, the \"%s\" network interface has been succesfully deleted", $intf)
- )
- },
},
+ end => {
+ name => sub {
+ ($faillure ?
+ N("An error occured while deleting the \"%s\" network interface:\n\n%s",
+ $intf, $faillure) :
+ N("Congratulations, the \"%s\" network interface has been succesfully deleted", $intf)
+ )
+ },
+ },
},
};
require wizards;