1
0
Derivar 0

saving uncommitted changes in /etc prior to emerge run

Este cometimento está contido em:
hasufell 2015-09-24 13:54:26 +02:00 cometido por Hans Wurst
ascendente f41f5873b3
cometimento 1bdafe0a95
1 ficheiros modificados com 19 adições e 0 eliminações

19
init.d/._cfg0000_kmod-static-nodes Ficheiro executável
Ver ficheiro

@ -0,0 +1,19 @@
#!/sbin/runscript
# 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 $?
}