2013-02-13 03:39:50 +05:30
|
|
|
#!@SBINDIR@/runscript
|
2012-09-27 04:12:37 +05:30
|
|
|
# Copyright 1999-2012 Gentoo Foundation
|
|
|
|
# Released under the 2-clause BSD license.
|
|
|
|
|
2012-10-31 21:23:37 +05:30
|
|
|
description="set up tmpfiles.d entries"
|
2012-09-27 04:12:37 +05:30
|
|
|
|
|
|
|
depend()
|
|
|
|
{
|
|
|
|
need localmount
|
|
|
|
}
|
|
|
|
|
|
|
|
start()
|
|
|
|
{
|
2012-10-31 21:23:37 +05:30
|
|
|
ebegin "setting up tmpfiles.d entries"
|
2013-07-25 23:03:03 +05:30
|
|
|
@LIBEXECDIR@/sh/tmpfiles.sh --exclude-prefix=/dev --create --remove \
|
|
|
|
${tmpfiles_opts}
|
2012-09-27 04:12:37 +05:30
|
|
|
eend $?
|
|
|
|
return 0
|
|
|
|
}
|