summaryrefslogtreecommitdiff
path: root/repo/utmps/utmp-prepare.initd
blob: 9f61249eaa8801d81bf9cbea363dcd51fefd0e20 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#!/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
}