Files
without-systemd/sys-apps/tmpfilesd/files/tmpfilesd-dev.initd
2023-10-19 23:33:40 -06:00

21 lines
326 B
Plaintext

#!/sbin/openrc-run
# Copyright 2023 Gentoo Authors
# Released under the MIT license.
description="Create Static Devices Nodes in /dev"
depend()
{
provide tmpfiles-dev tmpfiles.dev
use dev-mount
before dev
keyword -prefix -vserver
}
start()
{
ebegin "${description}"
tmpfilesd --prefix=/dev --create --boot
eend $?
}