summaryrefslogtreecommitdiff
blob: 3ddedc3f3b7f7d8fb365ffe66d14e9bcce14d17b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/sbin/openrc-run
# Copyright 2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

command=/usr/sbin/uuidd
command_args_foreground="-FP"
command_user=uuidd
pidfile=/run/uuidd/uuidd.pid

depend() {
	need clock localmount
}

start_pre() {
	checkpath -d -m 2755 -o uuidd:uuidd /run/uuidd &&
	checkpath -d -m 0755 -o uuidd:uuidd /var/lib/libuuid
}