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"
|
|
|
|
@LIBEXECDIR@/sh/tmpfiles.sh --create --remove ${tmpfiles_opts}
|
2012-09-27 04:12:37 +05:30
|
|
|
eend $?
|
|
|
|
return 0
|
|
|
|
}
|