21 lines
364 B
Plaintext
Executable File
21 lines
364 B
Plaintext
Executable File
#!/sbin/openrc-run
|
|
# Copyright 1999-2012 Gentoo Foundation
|
|
# Released under the 2-clause BSD license.
|
|
|
|
description="set up tmpfiles.d entries"
|
|
|
|
depend()
|
|
{
|
|
use dev-mount
|
|
before dev
|
|
keyword -prefix -vserver
|
|
}
|
|
|
|
start()
|
|
{
|
|
ebegin "setting up tmpfiles.d entries for /dev"
|
|
/lib64/rc/sh/tmpfiles.sh --prefix=/dev --create --boot ${tmpfiles_opts}
|
|
eend $?
|
|
return 0
|
|
}
|