diff options
author | Laurent Bercot <ska-skaware@skarnet.org> | 2021-04-19 10:08:03 +0000 |
---|---|---|
committer | Laurent Bercot <ska-skaware@skarnet.org> | 2021-04-19 10:08:03 +0000 |
commit | 793cf14db75f7802408130ef87598850f3186956 (patch) | |
tree | f1ae96ee789c11d279cace067f62f868ba57d306 /examples/openrc/wtmpd | |
parent | b9781c6faa797fd68ea2807345c02fa12c3e0efb (diff) | |
download | utmps-793cf14db75f7802408130ef87598850f3186956.tar.xz |
Prepare for 0.1.0.2, update examples
Diffstat (limited to 'examples/openrc/wtmpd')
-rwxr-xr-x | examples/openrc/wtmpd | 21 |
1 files changed, 14 insertions, 7 deletions
diff --git a/examples/openrc/wtmpd b/examples/openrc/wtmpd index a7bda75..7d40941 100755 --- a/examples/openrc/wtmpd +++ b/examples/openrc/wtmpd @@ -1,13 +1,20 @@ #!/sbin/openrc-run -name="wtmpd" -command="s6-ipcserver" -command_args="/run/utmps/wtmpd-socket utmps-wtmpd" -command_background=yes +depend() { + after bootmisc + before networking + after utmpd +} + +name=wtmpd +description="utmps daemon for the wtmp service" +command=s6-ipcserver +command_args="/run/utmps/.wtmpd-socket utmps-wtmpd" command_user=utmp -pidfile="/run/utmps/wtmpd.pid" -start_stop_daemon_args="-d /run/utmps" +command_background=true +directory=/var/log +pidfile=/run/utmps/wtmpd.pid start_pre() { - checkpath -D -d -o utmp:utmp -m 0755 /run/utmps + checkpath -f -o utmp:utmp /var/log/wtmp } |