2013-12-22 02:21:11 +05:30
|
|
|
#!@SBINDIR@/openrc-run
|
2012-09-27 04:12:37 +05:30
|
|
|
# Copyright 1999-2012 Gentoo Foundation
|
|
|
|
# Released under the 2-clause BSD license.
|
|
|
|
|
2015-01-24 18:36:36 +05:30
|
|
|
description="Set up tmpfiles.d entries"
|
2012-09-27 04:12:37 +05:30
|
|
|
|
|
|
|
depend()
|
|
|
|
{
|
|
|
|
need localmount
|
|
|
|
}
|
|
|
|
|
|
|
|
start()
|
|
|
|
{
|
2015-01-24 18:36:36 +05:30
|
|
|
ebegin "Setting up tmpfiles.d entries"
|
2014-03-26 21:43:20 +05:30
|
|
|
@LIBEXECDIR@/sh/tmpfiles.sh --exclude-prefix=/dev --create --remove --boot \
|
2013-07-25 23:03:03 +05:30
|
|
|
${tmpfiles_opts}
|
2012-09-27 04:12:37 +05:30
|
|
|
eend $?
|
|
|
|
return 0
|
|
|
|
}
|