* move debian directory to misc/debian * move rmp shit distro directory the spec file and changelog * move the alpine directory in misc with a minimal started files * still there's an error on spec file for name of the tarball * all of those files it depends of the previous commit that gives init/shistemd
36 lines
670 B
Plaintext
36 lines
670 B
Plaintext
#!/sbin/openrc-run
|
|
|
|
description="Multicraft server"
|
|
|
|
pidfile="/var/run/$SVCNAME.pid"
|
|
command="/usr/bin/multicraftserver"
|
|
|
|
start_stop_daemon_args="--user ${USER:-multicraft} --group ${GROUP:-games}
|
|
--make-pidfile --pidfile $pidfile --background --quiet --wait 300"
|
|
command_args="$ARGS"
|
|
|
|
|
|
depend() {
|
|
need net
|
|
after firewall
|
|
}
|
|
|
|
optional_command_arg() {
|
|
if [ -n "$2" ]; then
|
|
command_args="$command_args $1 $2"
|
|
fi
|
|
}
|
|
|
|
start_pre() {
|
|
optional_command_arg --log $LOG
|
|
optional_command_arg --config $CONFIG
|
|
optional_command_arg --gameid $GAMEID
|
|
}
|
|
|
|
reload() {
|
|
ebegin "Reloading $SVCNAME"
|
|
start-stop-daemon --signal HUP \
|
|
--exec "$EXEC" --pidfile "$pidfile"
|
|
eend $?
|
|
}
|