aboutsummaryrefslogtreecommitdiff
blob: 14886c2b5c0f1c9d54bb5923974fd210f50df7f1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/sbin/openrc-run
# Copyright 2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

name="among-sus server"
description="Among Us, but it's a text adventure"

AMOGUS_PORT=${AMOGUS_PORT:-1234}

command="/usr/bin/among-sus"
command_args="-p ${AMOGUS_PORT}"
command_user=nobody:nobody
command_background=1
pidfile=/run/among-sus.pid

depend() {
	need net
}