summaryrefslogtreecommitdiff
path: root/pcr/openrc-base/kmod-static-nodes.initd
diff options
context:
space:
mode:
authorLuke Shumaker <lukeshu@lukeshu.com>2018-07-12 14:01:24 -0400
committerLuke Shumaker <lukeshu@lukeshu.com>2018-07-12 16:44:57 -0400
commita51a45f18643194977b898d44ca94a88ce1105ca (patch)
tree625ec95c441aa0060916f2b6d7eef5d3aa07f241 /pcr/openrc-base/kmod-static-nodes.initd
parent71fcf0b4b490e8d497f146eddfc0e9f3ed4b1592 (diff)
downloadabslibre-a51a45f18643194977b898d44ca94a88ce1105ca.tar.gz
abslibre-a51a45f18643194977b898d44ca94a88ce1105ca.tar.bz2
abslibre-a51a45f18643194977b898d44ca94a88ce1105ca.zip
pcr/kmod-openrc: Split off from pcr/openrc-base, tidy up
The rest of pcr/openrc-base could use the same treatment, but I'm only one man. However, in the mean time, stick a _commit= in pcr/openrc-base so that I can at least run `updpkgsums`, instead of trusting "master" to have not changed.
Diffstat (limited to 'pcr/openrc-base/kmod-static-nodes.initd')
-rw-r--r--pcr/openrc-base/kmod-static-nodes.initd19
1 files changed, 0 insertions, 19 deletions
diff --git a/pcr/openrc-base/kmod-static-nodes.initd b/pcr/openrc-base/kmod-static-nodes.initd
deleted file mode 100644
index 7a3f529dc..000000000
--- a/pcr/openrc-base/kmod-static-nodes.initd
+++ /dev/null
@@ -1,19 +0,0 @@
-#!/usr/bin/openrc-run
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-description="Create list of required static device nodes for the current kernel"
-
-depend() {
- after dev-mount
- before tmpfiles.dev dev
- keyword -lxc -systemd-nspawn
-}
-
-start() {
- ebegin "Creating list of required static device nodes for the current kernel"
- checkpath -q -d /run/tmpfiles.d
- kmod static-nodes --format=tmpfiles --output=/run/tmpfiles.d/kmod.conf
- eend $?
-}