okay pid file has a change of working now
[freeside.git] / fs_passwd / fs_passwdd
index 3a2bd1d..e72ceb7 100755 (executable)
@@ -10,7 +10,7 @@ use strict;
 use Socket;
 
 my $fs_passwdd_socket = "/usr/local/freeside/fs_passwdd_socket";
-my $pid_file = "$fs_passwdd_socket.pid"
+my $pid_file = "$fs_passwdd_socket.pid";
 
 $ENV{'PATH'} ='/usr/local/bin:/usr/bin:/usr/ucb:/bin';
 $ENV{'SHELL'} = '/bin/sh';
@@ -31,7 +31,7 @@ listen(Server,SOMAXCONN) or die "listen: $!";
 
 if ( -e $pid_file ) {
   open(PIDFILE,"<$pid_file");
-  chomp( my $old_pid = <$pid_file> );
+  chomp( my $old_pid = <PIDFILE> );
   close PIDFILE;
   kill 'TERM', $pid_file;
 }