2013-12-21 14:51:11 -06:00
|
|
|
#!@SBINDIR@/openrc-run
|
2012-09-26 15:42:37 -07:00
|
|
|
# Copyright 1999-2012 Gentoo Foundation
|
|
|
|
# Released under the 2-clause BSD license.
|
|
|
|
|
2012-10-31 10:53:37 -05:00
|
|
|
description="set up tmpfiles.d entries"
|
2012-09-26 15:42:37 -07:00
|
|
|
|
|
|
|
depend()
|
|
|
|
{
|
|
|
|
need localmount
|
|
|
|
}
|
|
|
|
|
|
|
|
start()
|
|
|
|
{
|
2012-10-31 10:53:37 -05:00
|
|
|
ebegin "setting up tmpfiles.d entries"
|
2014-03-26 12:13:20 -04:00
|
|
|
@LIBEXECDIR@/sh/tmpfiles.sh --exclude-prefix=/dev --create --remove --boot \
|
2013-07-25 12:33:03 -05:00
|
|
|
${tmpfiles_opts}
|
2012-09-26 15:42:37 -07:00
|
|
|
eend $?
|
|
|
|
return 0
|
|
|
|
}
|