#!/usr/bin/perl

### BEGIN INIT INFO
# Provides:          opensim
# Required-Start:    $local_fs $remote_fs $network $syslog
# Required-Stop:     $local_fs $remote_fs $network $syslog
# Default-Start:     2 3 4 5
# Default-Stop:      0 1 6
# Short-Description: Opensim service 1.0
# Description:       Opensim service 1.0
# Documentation:     https://opensimcity.org/index.php/forum/server-software
# Type:              forking
# X-Interactive:     false
### END INIT INFO

# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 1, or (at your option)
# any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.

my $OPENSIMDIR = "/home/osowner/opensim";

my $Command = $ARGV[0];
if ($Command eq "")
{
	$Command = "NONE";
}

my $running=`ps ax|grep dotnet|grep -v grep`;

if ($Command eq "start")
{
	if ($running eq "")
	{
		print "Starting Opensim...\n";
		if (-f "$OPENSIMDIR/nostart")
		{
			print "Removing $OPENSIMDIR/nostart\n";
			# Remove the lock file if it exists
			unlink("$OPENSIMDIR/nostart");
		}
		# Start the screen process
		system("nohup $OPENSIMDIR/startopensim > /tmp/OpensimStartup.log\&");
	}
}
elsif ($Command eq "stop")
{
	print "Stopping Opensim process...\n";
	system("touch '$OPENSIMDIR/nostart'");
	if ($running ne "")
	{
		# Process is running, kill it
		system("killall dotnet");
	}
}
elsif ($Command eq "restart")
{
	if (-f "$OPENSIMDIR/nostart")
	{
		print("Removing $OPENSIMDIR/nostart\n");
		unlink("$OPENSIMDIR/nostart");
	}
	if ($running ne "")
	{
		system("killall dotnet");
	}
}
elsif ($Command eq "status")
{
	if ($running ne "")
	{
		print("Opensim Server Running\n");
	}
	else
	{
		print("Opensim Server Not Running\n");
	}
}
else
{
	print ("Uknown command '$Command'\n");
	print ("Usage: $0 {start|status|stop|restart}\n");
	exit(1);
}

exit(0);
