aboutsummaryrefslogtreecommitdiffstats
path: root/community/rest-server/rest-server.initd
diff options
context:
space:
mode:
Diffstat (limited to 'community/rest-server/rest-server.initd')
-rw-r--r--community/rest-server/rest-server.initd18
1 files changed, 18 insertions, 0 deletions
diff --git a/community/rest-server/rest-server.initd b/community/rest-server/rest-server.initd
new file mode 100644
index 0000000000..25745876e3
--- /dev/null
+++ b/community/rest-server/rest-server.initd
@@ -0,0 +1,18 @@
+#!/sbin/openrc-run
+
+name="rest-server"
+command="/usr/bin/$name"
+command_args="$REST_SERVER_OPTS --path '${REST_SERVER_PATH}'"
+command_background="yes"
+command_user="${REST_USER:-restic}"
+pidfile="/var/run/$RC_SVCNAME.pid"
+
+depend() {
+ need net
+ after firewall
+}
+
+start_pre() {
+ checkpath --directory "${REST_SERVER_PATH}" \
+ --owner "${REST_USER:-restic}:${REST_GROUP:-restic}"
+}