summaryrefslogtreecommitdiff
path: root/system/utmps/utmps.initd
blob: c6f884a527ee73624c198ff7fddd761df5a8a267 (plain) (blame)
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
26
27
28
29
30
#!/sbin/openrc-run
# Copyright 2022 Adélie Linux

description="boot script for the utmps wtmp and btmp services"

depend()
{
	need localmount
	after bootmisc
	before networking
}

stop()
{
	ebegin "Stopping the utmps wtmp and btmp services"
	touch /run/service/wtmpd/down /run/service/btmpd/down
	s6-svc -d /run/service/btmpd
	s6-svc -d /run/service/wtmpd
	eend $?
}

start()
{
	ebegin "Starting the utmps wtmp and btmp services"
	rm -f /run/service/wtmpd/down /run/service/btmpd/down
	s6-svlisten -U " /run/service/wtmpd" " /run/service/btmpd" "" \
		foreground " s6-svc" " -u" " /run/service/wtmpd" "" \
		s6-svc -u /run/service/btmpd
	eend $?
}