]> Cypherpunks.ru repositories - nncp.git/commitdiff
nncp-toss startup script
authorSergey Matveev <stargrave@stargrave.org>
Mon, 16 Jan 2017 09:31:02 +0000 (12:31 +0300)
committerSergey Matveev <stargrave@stargrave.org>
Mon, 16 Jan 2017 09:31:02 +0000 (12:31 +0300)
ports/nncp/Makefile
ports/nncp/files/nncp-toss.in [new file with mode: 0644]

index 3f43deac24f928f693d4e63f2af4722d0247bc68..16ea6180c0bf099d8403fb03445dc896c8acc9d6 100644 (file)
@@ -17,7 +17,7 @@ BUILD_DEPENDS=        go:lang/go
 USES=          tar:xz
 MAKEFILE=      BSDmakefile
 
-USE_RC_SUBR=   nncp-caller nncp-daemon
+USE_RC_SUBR=   nncp-caller nncp-daemon nncp-toss
 REQUIRE=       DAEMON
 
 SUB_FILES=     pkg-message pkg-deinstall nncp.newsyslog.conf
diff --git a/ports/nncp/files/nncp-toss.in b/ports/nncp/files/nncp-toss.in
new file mode 100644 (file)
index 0000000..1fa1142
--- /dev/null
@@ -0,0 +1,32 @@
+#!/bin/sh
+#
+# $FreeBSD$
+#
+# PROVIDE: nncp-toss
+# REQUIRE: DAEMON NETWORKING FILESYSTEMS
+# KEYWORD: shutdown
+#
+# Add these lines to /etc/rc.conf.local or /etc/rc.conf
+# to enable this service:
+#
+# nncp_toss_enable (bool):     Set to NO by default.
+#                              Set it to YES to enable nncp-toss.
+# nncp_toss_config (path):     Set to %%PREFIX%%/etc/nncp.yaml by default.
+# nncp_toss_cycle   (int):     Repeat tossing after that number of seconds.
+#                              Default is "60".
+
+. /etc/rc.subr
+
+name=nncp_toss
+rcvar=nncp_toss_enable
+
+load_rc_config $name
+
+: ${nncp_toss_enable:="NO"}
+: ${nncp_toss_config="%%PREFIX%%/etc/nncp.yaml"}
+: ${nncp_toss_cycle="60"}
+
+command=%%PREFIX%%/bin/nncp-toss
+command_args="-quiet -cycle $nncp_toss_cycle -cfg $nncp_toss_config &"
+
+run_rc_command "$1"