2013-12-21 14:51:11 -06:00
|
|
|
#!@SBINDIR@/openrc-run
|
2013-07-25 12:33:03 -05:00
|
|
|
# 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"
|
2014-03-26 12:14:08 -04:00
|
|
|
@LIBEXECDIR@/sh/tmpfiles.sh --prefix=/dev --create ${tmpfiles_opts}
|
2013-07-25 12:33:03 -05:00
|
|
|
eend $?
|
|
|
|
return 0
|
|
|
|
}
|