summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTiziano Müller <dev-zero@gentoo.org>2007-09-12 08:10:42 +0000
committerTiziano Müller <dev-zero@gentoo.org>2007-09-12 08:10:42 +0000
commit465de0ef93ecce70346c0a4c651c5b7158277b6a (patch)
treeb24f2689c19241341c1acd1a3322f703fa00b1db /sys-fs/evms
parentVersion 0.26.7 stable for x86, see bug 191035. Wiped out oldest version. (diff)
downloadgentoo-2-465de0ef93ecce70346c0a4c651c5b7158277b6a.tar.gz
gentoo-2-465de0ef93ecce70346c0a4c651c5b7158277b6a.tar.bz2
gentoo-2-465de0ef93ecce70346c0a4c651c5b7158277b6a.zip
Un-bash the init-script
(Portage version: 2.1.3.8)
Diffstat (limited to 'sys-fs/evms')
-rw-r--r--sys-fs/evms/ChangeLog5
-rwxr-xr-xsys-fs/evms/files/evms.initd8
2 files changed, 8 insertions, 5 deletions
diff --git a/sys-fs/evms/ChangeLog b/sys-fs/evms/ChangeLog
index 0d64eb29f6bd..4041e389cadf 100644
--- a/sys-fs/evms/ChangeLog
+++ b/sys-fs/evms/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for sys-fs/evms
# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-fs/evms/ChangeLog,v 1.71 2007/08/31 15:13:30 fmccor Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-fs/evms/ChangeLog,v 1.72 2007/09/12 08:10:42 dev-zero Exp $
+
+ 12 Sep 2007; Tiziano Müller <dev-zero@gentoo.org> files/evms.initd:
+ Un-bash the init-script
31 Aug 2007; Ferris McCormick <fmccor@gentoo.org> evms-2.5.5-r7.ebuild:
Add ~sparc keyword --- Bug #190828 (third choice) --- Please see the bug for
diff --git a/sys-fs/evms/files/evms.initd b/sys-fs/evms/files/evms.initd
index c416fed0d145..700315f095bd 100755
--- a/sys-fs/evms/files/evms.initd
+++ b/sys-fs/evms/files/evms.initd
@@ -1,10 +1,10 @@
#!/sbin/runscript
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-fs/evms/files/evms.initd,v 1.1 2007/08/30 22:01:52 dev-zero Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-fs/evms/files/evms.initd,v 1.2 2007/09/12 08:10:42 dev-zero Exp $
depend() {
- if [[ -e /lib/librc.so ]]; then
+ if [ -e /lib/librc.so ]; then
# on baselayout-1 this causes
# a dependency loop with checkroot (before *)
before checkroot
@@ -12,12 +12,12 @@ depend() {
}
start() {
- if [[ ! -e /lib/librc.so ]]; then
+ if [ ! -e /lib/librc.so ]; then
eerror "The ${SVCNAME} init script is written for baselayout-2"
eerror "Please do not use it with baselayout-1"
return 1
fi
- if [[ -z ${CDBOOT} ]] ; then
+ if [ -z ${CDBOOT} ] ; then
ebegin "Activating EVMS"
evms_activate
retval=$?