maybe chmod 0644 'conf.d/network'
maybe chmod 0644 'conf.d/ntp-client'
maybe chmod 0644 'conf.d/ntpd'
+maybe chmod 0644 'conf.d/opentmpfiles-dev'
+maybe chmod 0644 'conf.d/opentmpfiles-setup'
maybe chmod 0644 'conf.d/openvpn'
maybe chmod 0644 'conf.d/pciparm'
maybe chmod 0644 'conf.d/php-fpm'
maybe chmod 0755 'init.d/ntp-client'
maybe chmod 0755 'init.d/ntpd'
maybe chmod 0755 'init.d/numlock'
+maybe chmod 0755 'init.d/opentmpfiles-dev'
+maybe chmod 0755 'init.d/opentmpfiles-setup'
maybe chmod 0755 'init.d/openvpn'
maybe chmod 0755 'init.d/osclock'
maybe chmod 0755 'init.d/pciparm'
--- /dev/null
+#!/sbin/openrc-run
+# Copyright 1999-2012 Gentoo Foundation
+# Released under the 2-clause BSD license.
+
+description="Set up tmpfiles.d entries for /dev"
+
+depend()
+{
+ provide tmpfiles-dev tmpfiles.dev
+ use dev-mount
+ before dev
+ keyword -prefix -vserver
+}
+
+start()
+{
+ ebegin "Setting up tmpfiles.d entries for /dev"
+ tmpfiles --prefix=/dev --create --boot ${tmpfiles_opts}
+ eend $?
+}
--- /dev/null
+#!/sbin/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 $?
+}