2ee3e9d952
Reported-by: <pesa@gentoo.org>
19 lines
317 B
Plaintext
19 lines
317 B
Plaintext
#!@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 "Creating ${description#Create }"
|
|
@LIBEXECDIR@/sh/tmpfiles.sh --create ${tmpfiles_opts}
|
|
eend $?
|
|
return 0
|
|
}
|