Panel/_agent-linux/includes/ogp_agent.init.gentoo
copilot-swe-agent[bot] 08f83918f1 Fix server offline issue by updating OGP references to match agent changes
Co-authored-by: iaretechnician <2749183+iaretechnician@users.noreply.github.com>
2025-09-05 23:02:41 +00:00

25 lines
665 B
Text

#!/sbin/runscript
# Distributed under the terms of the GNU General Public License v2
# GF: Config is in $agent_dir/Cfg/Config.pm
agent_dir=OGP_AGENT_DIR
agent_user=OGP_USER
depend() {
need net
}
start() {
ebegin "Starting Game Server Agent"
start-stop-daemon --verbose --chdir $agent_dir --start --background --user $agent_user -e PWD="$agent_dir" --exec screen -d -m -t agent -c screenrc -S agent ./agent_run -pidfile agent_run.pid
eend $? "Failed to start Game Server Agent"
}
stop() {
ebegin "Stopping Game Server Agent"
start-stop-daemon --stop --quiet --pidfile $agent_dir/agent_run.pid
eend $? "Failed to stop Game Server Agent"
}