diff options
author | Guillaume Cottenceau <gc@mandriva.com> | 2002-02-22 18:58:22 +0000 |
---|---|---|
committer | Guillaume Cottenceau <gc@mandriva.com> | 2002-02-22 18:58:22 +0000 |
commit | b3cfe7f5bd71130decb72001850cbc4e797305ba (patch) | |
tree | 79ddd1512fed4242b9eef418509a3f6a555f5243 | |
parent | 112c7e5b4667cd4f725d6028671febe3c983bcee (diff) | |
download | drakx-backup-do-not-use-b3cfe7f5bd71130decb72001850cbc4e797305ba.tar drakx-backup-do-not-use-b3cfe7f5bd71130decb72001850cbc4e797305ba.tar.gz drakx-backup-do-not-use-b3cfe7f5bd71130decb72001850cbc4e797305ba.tar.bz2 drakx-backup-do-not-use-b3cfe7f5bd71130decb72001850cbc4e797305ba.tar.xz drakx-backup-do-not-use-b3cfe7f5bd71130decb72001850cbc4e797305ba.zip |
exit the pur_gtk version after launching the wizard version
-rwxr-xr-x | perl-install/standalone/drakgw | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/perl-install/standalone/drakgw b/perl-install/standalone/drakgw index ee25ca405..9de8ea10c 100755 --- a/perl-install/standalone/drakgw +++ b/perl-install/standalone/drakgw @@ -705,8 +705,9 @@ Click on Configure to launch the setup wizard.", $setup_state)); $bbox1->set_layout(-end); my $button_conf = new Gtk::Button _("Configure"); $button_conf->signal_connect ( clicked => sub { - system("/usr/sbin/drakgw --wizard"); - }); + system("/usr/sbin/drakgw --wizard"); + kill(USR1, $::CCPID); + }); $bbox1->add($button_conf); my $button_cancel = new Gtk::Button _("Cancel"); $button_cancel->signal_connect ( clicked => sub { @@ -724,6 +725,9 @@ Click on Configure to launch the setup wizard.", $setup_state)); #------------------------------------------------- #- $Log$ +#- Revision 1.59 2002/02/22 18:58:22 gc +#- exit the pur_gtk version after launching the wizard version +#- #- Revision 1.58 2002/01/18 20:19:44 gc #- - move 'use standalone' up to comply to 'explanations' #- - write higher-level 'explanations' |