aboutsummaryrefslogtreecommitdiffstats
path: root/package/network/services/unetd/files/unetd.init
diff options
context:
space:
mode:
Diffstat (limited to 'package/network/services/unetd/files/unetd.init')
-rw-r--r--package/network/services/unetd/files/unetd.init17
1 files changed, 17 insertions, 0 deletions
diff --git a/package/network/services/unetd/files/unetd.init b/package/network/services/unetd/files/unetd.init
new file mode 100644
index 00000000000..c1124821ee8
--- /dev/null
+++ b/package/network/services/unetd/files/unetd.init
@@ -0,0 +1,17 @@
+#!/bin/sh /etc/rc.common
+# Copyright (c) 2022 OpenWrt.org
+
+START=19
+
+USE_PROCD=1
+PROG=/usr/sbin/unetd
+
+start_service() {
+ mkdir -p /var/run/unetd /etc/unetd
+
+ procd_open_instance
+ procd_set_param command "$PROG" -h /var/run/unetd/hosts -u /var/run/unetd/socket
+ procd_set_param respawn
+ procd_set_param limits core="unlimited"
+ procd_close_instance
+}