mirror of
https://github.com/KenjiBrown/without-systemd.git
synced 2026-04-07 05:00:05 -04:00
21 lines
326 B
Plaintext
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 $?
|
|
}
|