2015-07-31 00:55:23 +00:00
|
|
|
#!/sbin/openrc-run
|
2015-02-27 00:58:55 +00:00
|
|
|
# Copyright 1999-2012 Gentoo Foundation
|
|
|
|
# Released under the 2-clause BSD license.
|
|
|
|
|
2015-07-31 00:55:23 +00:00
|
|
|
description="Set up tmpfiles.d entries"
|
2015-02-27 00:58:55 +00:00
|
|
|
|
|
|
|
depend()
|
|
|
|
{
|
|
|
|
need localmount
|
|
|
|
}
|
|
|
|
|
|
|
|
start()
|
|
|
|
{
|
2015-07-31 00:55:23 +00:00
|
|
|
ebegin "Setting up tmpfiles.d entries"
|
|
|
|
/lib64/rc/sh/tmpfiles.sh --exclude-prefix=/dev --create --remove --boot \
|
2015-02-27 00:58:55 +00:00
|
|
|
${tmpfiles_opts}
|
|
|
|
eend $?
|
|
|
|
return 0
|
|
|
|
}
|