diff options
author | Thierry Vignaud <tvignaud@mandriva.org> | 2003-02-24 07:36:00 +0000 |
---|---|---|
committer | Thierry Vignaud <tvignaud@mandriva.org> | 2003-02-24 07:36:00 +0000 |
commit | 04a32a7f6b48a977c768d62a1c28f00958e0c9df (patch) | |
tree | 05ea561bbfdbb2819f457e37b6f8d197540e3bf1 /perl-install/standalone/drakxservices | |
parent | e58ebc9dfceda9a7ceaab42e1aacb85724e65f96 (diff) | |
download | drakx-04a32a7f6b48a977c768d62a1c28f00958e0c9df.tar drakx-04a32a7f6b48a977c768d62a1c28f00958e0c9df.tar.gz drakx-04a32a7f6b48a977c768d62a1c28f00958e0c9df.tar.bz2 drakx-04a32a7f6b48a977c768d62a1c28f00958e0c9df.tar.xz drakx-04a32a7f6b48a977c768d62a1c28f00958e0c9df.zip |
- clean up embedding; since socket get automatically destroyed on child exit
and since they emit plug-removed at that moment, it's just cleaner to
centralize/consolidate the child exit in mcc
this of course, need a newer up-to-date mcc
what's more, it allows to remove the somewhat mythical
"$::isEmbedded and kill 'USR1', $::CCPID;"
- drakautoinst, drakxservices, keyboardrake: fix fscking embedding managment
Diffstat (limited to 'perl-install/standalone/drakxservices')
-rwxr-xr-x | perl-install/standalone/drakxservices | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/perl-install/standalone/drakxservices b/perl-install/standalone/drakxservices index 348331fe4..bb6dea16d 100755 --- a/perl-install/standalone/drakxservices +++ b/perl-install/standalone/drakxservices @@ -14,6 +14,4 @@ my $in = 'interactive'->vnew('su', 'services'); begin: my $l = services::ask($in); services::doit($in, $l) if $l; -!$::isEmbedded and $in->exit(0); -kill 'USR1', $::CCPID; -goto begin; +$in->exit(0); |