wait()ing on SIGCHLD causing hangs for some folks
authorivan <ivan>
Fri, 7 Jul 2000 04:05:25 +0000 (04:05 +0000)
committerivan <ivan>
Fri, 7 Jul 2000 04:05:25 +0000 (04:05 +0000)
fs_passwd/fs_passwd_server
fs_signup/fs_signup_server

index cb0e693..c15c940 100755 (executable)
@@ -22,7 +22,8 @@ adminsuidsetup $user;
 
 my($shellmachine)=shift or die &usage;
 
-$SIG{CHLD} = sub { wait() };
+#causing trouble for some folks
+#$SIG{CHLD} = sub { wait() };
 
 my($fs_passwdd)="/usr/local/sbin/fs_passwdd";
 
index 1d7ab29..b5fc23c 100755 (executable)
@@ -28,7 +28,8 @@ my $pkgpart = $agent->pkgpart_hashref;
 
 my $refnum = shift or die &usage;
 
-$SIG{CHLD} = sub { wait() };
+#causing trouble for some folks
+#$SIG{CHLD} = sub { wait() };
 
 my($fs_signupd)="/usr/local/sbin/fs_signupd";