e8acdc6f85
This is being changed to use for the reason I stated in the previous commit. There is no guarantee that someone is using a device manager.
21 lines
398 B
Plaintext
21 lines
398 B
Plaintext
#!@PREFIX@/sbin/runscript
|
|
# Copyright 1999-2012 Gentoo Foundation
|
|
# Released under the 2-clause BSD license.
|
|
|
|
description="Create tmpfiles.d entries (sysinit)"
|
|
|
|
depend()
|
|
{
|
|
# Convert to 'need dev' when the new udev is ready, for OpenRC 0.11
|
|
#need dev-mount
|
|
use dev
|
|
}
|
|
|
|
start()
|
|
{
|
|
ebegin "Creating ${description#Create }"
|
|
@LIBEXECDIR@/sh/tmpfiles.sh --create ${tmpfiles_opts}
|
|
eend $?
|
|
return 0
|
|
}
|