summaryrefslogtreecommitdiff
path: root/examples/openrc/utmpd
diff options
context:
space:
mode:
Diffstat (limited to 'examples/openrc/utmpd')
-rwxr-xr-xexamples/openrc/utmpd13
1 files changed, 9 insertions, 4 deletions
diff --git a/examples/openrc/utmpd b/examples/openrc/utmpd
index a091528..2cf467b 100755
--- a/examples/openrc/utmpd
+++ b/examples/openrc/utmpd
@@ -1,8 +1,13 @@
#!/sbin/openrc-run
-# Assumes the /run/utmps directory already exists and belongs to utmp
-
name="utmpd"
-command="s6-ipcserver -- /run/utmps/utmpd-socket utmps-utmpd"
+command="s6-ipcserver"
+command_args="/run/utmps/utmpd-socket utmps-utmpd"
+command_background=yes
+command_user=utmp
pidfile="/run/utmps/utmpd.pid"
-start_stop_daemon_args="-b -m -c utmp -d /run/utmps"
+start_stop_daemon_args="-d /run/utmps"
+
+start_pre() {
+ checkpath -D -d -o utmp:utmp -m 0755 /run/utmps
+}