20d7b83150
For compatibility with systemd. Signed-off-by: Andrew Gregory <andrew.gregory.8@gmail.com>
21 lines
364 B
Plaintext
21 lines
364 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 ${tmpfiles_opts}
|
|
eend $?
|
|
return 0
|
|
}
|