summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWilliam Hubbs <williamh@gentoo.org>2013-07-26 06:49:54 +0000
committerWilliam Hubbs <williamh@gentoo.org>2013-07-26 06:49:54 +0000
commitdc46f93032a230a7f2d5e6651a587895b287d47f (patch)
tree7e381503a0f4cf6ac356ab00731215edfc68ec02 /sys-apps
parentRemove compiled files bundled in the tarball (fixes bug #478196). (diff)
downloadgentoo-2-dc46f93032a230a7f2d5e6651a587895b287d47f.tar.gz
gentoo-2-dc46f93032a230a7f2d5e6651a587895b287d47f.tar.bz2
gentoo-2-dc46f93032a230a7f2d5e6651a587895b287d47f.zip
Style fixes for init script, convert multiple spaces at the start of lines to tabs.
(Portage version: 2.2.0_alpha188/cvs/Linux i686, signed Manifest commit with key 0x30C46538)
Diffstat (limited to 'sys-apps')
-rw-r--r--sys-apps/kmod/ChangeLog6
-rw-r--r--sys-apps/kmod/files/static-nodes14
2 files changed, 12 insertions, 8 deletions
diff --git a/sys-apps/kmod/ChangeLog b/sys-apps/kmod/ChangeLog
index 4d086b640b54..b4fe25906f08 100644
--- a/sys-apps/kmod/ChangeLog
+++ b/sys-apps/kmod/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for sys-apps/kmod
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/kmod/ChangeLog,v 1.100 2013/07/23 17:26:30 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/kmod/ChangeLog,v 1.101 2013/07/26 06:49:54 williamh Exp $
+
+ 26 Jul 2013; William Hubbs <williamh@gentoo.org> files/static-nodes:
+ Style fixes for init script, convert multiple spaces at the start of lines to
+ tabs.
23 Jul 2013; Samuli Suominen <ssuominen@gentoo.org> files/static-nodes:
Correct tmpfiles.setup init script name in depend()
diff --git a/sys-apps/kmod/files/static-nodes b/sys-apps/kmod/files/static-nodes
index 8346b4b10855..44960a1821bb 100644
--- a/sys-apps/kmod/files/static-nodes
+++ b/sys-apps/kmod/files/static-nodes
@@ -1,18 +1,18 @@
#!/sbin/runscript
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/kmod/files/static-nodes,v 1.2 2013/07/23 17:26:31 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/kmod/files/static-nodes,v 1.3 2013/07/26 06:49:54 williamh Exp $
description="Create list of required static device nodes for the current kernel"
depend() {
- need localmount
- before tmpfiles.setup
+ need localmount
+ before tmpfiles.setup
}
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 $?
+ 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 $?
}