|
#!/usr/bin/env perl
FindBin::again();
my $me = realpath(File::Spec->catfile( $FindBin::RealBin , $FindBin::RealScript ));
my $uid = ( stat ( $me ))[4] || 0;
my $home = ( $ENV {NETDISCO_HOME} || ( getpwuid ( $uid ))[7] || $ENV {HOME});
my $old_pid = File::Spec->catfile( $home , 'netdisco-daemon.pid' );
my $new_pid = File::Spec->catfile( $home , 'netdisco-backend.pid' );
if (-f $old_pid ) { move( $old_pid , $new_pid ) }
my $backend =
File::Spec->catfile((File::Spec->splitpath( $me ))[1], 'netdisco-backend' );
exec { $backend } 'netdisco-backend' , @ARGV ;
|