mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-08-01 11:18:09 -07:00
Set command_args_foreground="-FP". Set command_user=uuidd. Signed-off-by: Mike Gilbert <floppym@gentoo.org>
18 lines
380 B
Plaintext
18 lines
380 B
Plaintext
#!/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
|
|
}
|