mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-05-10 22:54:22 +02:00
Also add a btmpd service, and separate preparation from initialization; reflect that in the setup-utmp program.
25 lines
674 B
Bash
25 lines
674 B
Bash
#!/sbin/openrc-run
|
|
# Copyright 2020-2022 Laurent Bercot for Alpine Linux
|
|
# Distributed under the terms of the ISC License.
|
|
#
|
|
description="preparation of the utmp databases"
|
|
|
|
depend() {
|
|
before networking
|
|
after clock
|
|
}
|
|
|
|
start() {
|
|
if ! test -L /var/log/utmp || test "$(readlink /var/log/utmp)" != /run/utmps/utmp ; then
|
|
rm -f /var/log/utmp
|
|
ln -s /run/utmps/utmp /var/log/utmp
|
|
fi
|
|
if ! test -L /var/log/wtmp || test "$(readlink /var/log/wtmp)" != wtmpd/wtmp ; then
|
|
rm -f /var/log/wtmp
|
|
ln -s wtmpd/wtmp /var/log/wtmp
|
|
fi
|
|
if ! test -L /var/log/btmp || test "$(readlink /var/log/btmp)" != btmpd/btmp ; then
|
|
rm -f /var/log/btmp
|
|
ln -s btmpd/btmp /var/log/btmp
|
|
fi
|
|
}
|