8250ac94df
Just to be consistent.
21 lines
371 B
Plaintext
21 lines
371 B
Plaintext
#!@SBINDIR@/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"
|
|
@LIBEXECDIR@/sh/tmpfiles.sh --prefix=/dev --create --boot ${tmpfiles_opts}
|
|
eend $?
|
|
return 0
|
|
}
|