summaryrefslogtreecommitdiff
path: root/init.d/tmpfilesd.boot.in
blob: 838bdd863d4ead452c4f7094c0672a8627e8ced0 (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="Create tmpfiles.d entries (boot)"

depend()
{
	need localmount
}

start()
{
	ebegin "${description/Create/Creating}"
	@LIBEXECDIR@/sh/tmpfiles.sh --create ${tmpfiles_opts}
	eend $?
	return 0
}