summaryrefslogtreecommitdiff
path: root/nonsystemd/openrc/opentmpfiles-setup.initd
blob: d36481f25012c874d72dcec4dc079fab152e3c78 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/usr/bin/openrc-run
# Copyright 1999-2012 Gentoo Foundation
# Released under the 2-clause BSD license.

description="Set up tmpfiles.d entries"

depend()
{
	provide tmpfiles-setup tmpfiles.setup
	need localmount
}

start()
{
	ebegin "Setting up tmpfiles.d entries"
	tmpfiles --exclude-prefix=/dev --create --remove --boot \
		${tmpfiles_opts}
	eend $?
}