From f9bb48be0295195c97bad86fe2dbe4ce8a9ea009 Mon Sep 17 00:00:00 2001 From: Laurent Bercot Date: Sat, 7 Jul 2018 18:47:18 +0000 Subject: Fix openrc scripts (thanks Guillermo) --- examples/openrc/wtmpd | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) (limited to 'examples/openrc/wtmpd') diff --git a/examples/openrc/wtmpd b/examples/openrc/wtmpd index 5485a8d..a7bda75 100755 --- a/examples/openrc/wtmpd +++ b/examples/openrc/wtmpd @@ -1,8 +1,13 @@ #!/sbin/openrc-run -# Assumes the /run/utmps directory already exists and belongs to utmp - name="wtmpd" -command="s6-ipcserver -- /run/utmps/wtmpd-socket utmps-wtmpd" +command="s6-ipcserver" +command_args="/run/utmps/wtmpd-socket utmps-wtmpd" +command_background=yes +command_user=utmp pidfile="/run/utmps/wtmpd.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 +} -- cgit v1.2.3