summaryrefslogtreecommitdiff
path: root/init.d/tmpfiles.setup.in
blob: a3ecd3142be2d4ad8c963119e1d31e76f193b08a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!@PREFIX@/sbin/runscript
# Copyright 1999-2012 Gentoo Foundation
# Released under the 2-clause BSD license.

description="set up tmpfiles.d entries"

depend()
{
	need localmount
}

start()
{
	ebegin "setting up tmpfiles.d entries"
	@LIBEXECDIR@/sh/tmpfiles.sh --create --remove ${tmpfiles_opts}
	eend $?
	return 0
}