aboutsummaryrefslogtreecommitdiff
path: root/files/usr/local/etc/rc.d/inv_sig_helper.invidious_server
diff options
context:
space:
mode:
Diffstat (limited to 'files/usr/local/etc/rc.d/inv_sig_helper.invidious_server')
-rw-r--r--files/usr/local/etc/rc.d/inv_sig_helper.invidious_server42
1 files changed, 42 insertions, 0 deletions
diff --git a/files/usr/local/etc/rc.d/inv_sig_helper.invidious_server b/files/usr/local/etc/rc.d/inv_sig_helper.invidious_server
new file mode 100644
index 0000000..5d46919
--- /dev/null
+++ b/files/usr/local/etc/rc.d/inv_sig_helper.invidious_server
@@ -0,0 +1,42 @@
+#!/bin/sh
+
+# PROVIDE: inv_sig_helper
+# REQUIRE: NETWORKING
+# KEYWORD: shutdown
+
+. /etc/rc.subr
+
+name=inv_sig_helper
+rcvar=inv_sig_helper_enable
+
+load_rc_config "$name"
+
+: ${inv_sig_helper_enable:='NO'}
+: ${inv_sig_helper_dir:='/usr/local/invidious/inv_sig_helper.git'}
+: ${inv_sig_helper_user='www'}
+: ${inv_sig_helper_syslog_priority:='info'}
+: ${inv_sig_helper_syslog_facility:='daemon'}
+: ${inv_sig_helper_socket:='/var/run/invidious/inv_sig_helper.sock'}
+
+inv_sig_helper_syslog_tag=inv_sig_helper
+
+inv_sig_helper_chdir=$inv_sig_helper_dir
+pidfile=/var/run/invidious/inv_sig_helper.pid
+command=/usr/sbin/daemon
+
+command_args="-f \
+-s ${inv_sig_helper_syslog_priority} \
+-l ${inv_sig_helper_syslog_facility} \
+-T ${inv_sig_helper_syslog_tag} \
+-p ${pidfile} \
+-t inv_sig_helper \
+${inv_sig_helper_dir}/target/release/inv_sig_helper_rust ${inv_sig_helper_socket}"
+
+procname="${inv_sig_helper_dir}/target/release/inv_sig_helper_rust"
+start_precmd=inv_sig_helper_prestart
+
+inv_sig_helper_prestart(){
+ install -d -m 0755 -o ${inv_sig_helper_user} /var/run/invidious
+}
+
+run_rc_command "$1"