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 | |
parent | b9781c6faa797fd68ea2807345c02fa12c3e0efb (diff) | |
download | utmps-793cf14db75f7802408130ef87598850f3186956.tar.xz |
Prepare for 0.1.0.2, update examples
Diffstat (limited to 'examples/openrc')
-rwxr-xr-x | examples/openrc/utmpd | 20 | ||||
-rwxr-xr-x | examples/openrc/wtmpd | 21 |
2 files changed, 27 insertions, 14 deletions
diff --git a/examples/openrc/utmpd b/examples/openrc/utmpd index 2cf467b..291180a 100755 --- a/examples/openrc/utmpd +++ b/examples/openrc/utmpd @@ -1,13 +1,19 @@ #!/sbin/openrc-run -name="utmpd" -command="s6-ipcserver" -command_args="/run/utmps/utmpd-socket utmps-utmpd" -command_background=yes +depend() { + after bootmisc + before networking +} + +name=utmpd +description="utmps daemon for the utmp service" +command=s6-ipcserver +command_args=".utmpd-socket utmps-utmpd" command_user=utmp -pidfile="/run/utmps/utmpd.pid" -start_stop_daemon_args="-d /run/utmps" +command_background=true +directory=/run/utmps +pidfile=/run/utmps/utmpd.pid start_pre() { - checkpath -D -d -o utmp:utmp -m 0755 /run/utmps + checkpath -D -d -o utmp:utmp -m 0755 /run/utmps } 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 } |