public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in sys-fs/lvm2/files: lvm.rc-2.02.28-r2
@ 2009-01-17 22:44 Robin H. Johnson (robbat2)
  0 siblings, 0 replies; 2+ messages in thread
From: Robin H. Johnson (robbat2) @ 2009-01-17 22:44 UTC (permalink / raw
  To: gentoo-commits

robbat2     09/01/17 22:44:20

  Modified:             lvm.rc-2.02.28-r2
  Log:
  Minor fix for bug #255237.
  (Portage version: 2.2_rc20/cvs/Linux 2.6.28-05718-g0556e82 x86_64, RepoMan options: --force)

Revision  Changes    Path
1.3                  sys-fs/lvm2/files/lvm.rc-2.02.28-r2

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-fs/lvm2/files/lvm.rc-2.02.28-r2?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-fs/lvm2/files/lvm.rc-2.02.28-r2?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-fs/lvm2/files/lvm.rc-2.02.28-r2?r1=1.2&r2=1.3

Index: lvm.rc-2.02.28-r2
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-fs/lvm2/files/lvm.rc-2.02.28-r2,v
retrieving revision 1.2
retrieving revision 1.3
diff -p -w -b -B -u -u -r1.2 -r1.3
--- lvm.rc-2.02.28-r2	1 Feb 2008 12:40:42 -0000	1.2
+++ lvm.rc-2.02.28-r2	17 Jan 2009 22:44:20 -0000	1.3
@@ -1,14 +1,14 @@
 #!/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/lvm2/files/lvm.rc-2.02.28-r2,v 1.2 2008/02/01 12:40:42 flameeyes Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-fs/lvm2/files/lvm.rc-2.02.28-r2,v 1.3 2009/01/17 22:44:20 robbat2 Exp $
 
 depend() {
 	if [ -e /lib/librc.so ]; then
 		# on baselayout-1 this causes
 		# dependency-cycles with checkroot (before *)
 		before checkfs fsck
-		after modules
+		after modules device-mapper
 	fi
 }
 






^ permalink raw reply	[flat|nested] 2+ messages in thread

* [gentoo-commits] gentoo-x86 commit in sys-fs/lvm2/files: lvm.rc-2.02.28-r2
@ 2009-01-17 22:53 Robin H. Johnson (robbat2)
  0 siblings, 0 replies; 2+ messages in thread
From: Robin H. Johnson (robbat2) @ 2009-01-17 22:53 UTC (permalink / raw
  To: gentoo-commits

robbat2     09/01/17 22:53:15

  Modified:             lvm.rc-2.02.28-r2
  Log:
  Stop using /lib/librc.so to detect openrc/baselayout2, and use a file installed by new openrc instead, fixes bug #253076.
  (Portage version: 2.2_rc20/cvs/Linux 2.6.28-05718-g0556e82 x86_64, RepoMan options: --force)

Revision  Changes    Path
1.4                  sys-fs/lvm2/files/lvm.rc-2.02.28-r2

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-fs/lvm2/files/lvm.rc-2.02.28-r2?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-fs/lvm2/files/lvm.rc-2.02.28-r2?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-fs/lvm2/files/lvm.rc-2.02.28-r2?r1=1.3&r2=1.4

Index: lvm.rc-2.02.28-r2
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-fs/lvm2/files/lvm.rc-2.02.28-r2,v
retrieving revision 1.3
retrieving revision 1.4
diff -p -w -b -B -u -u -r1.3 -r1.4
--- lvm.rc-2.02.28-r2	17 Jan 2009 22:44:20 -0000	1.3
+++ lvm.rc-2.02.28-r2	17 Jan 2009 22:53:15 -0000	1.4
@@ -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/lvm2/files/lvm.rc-2.02.28-r2,v 1.3 2009/01/17 22:44:20 robbat2 Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-fs/lvm2/files/lvm.rc-2.02.28-r2,v 1.4 2009/01/17 22:53:15 robbat2 Exp $
 
 depend() {
-	if [ -e /lib/librc.so ]; then
+	if [ -f /etc/init.d/sysfs ]; then
 		# on baselayout-1 this causes
 		# dependency-cycles with checkroot (before *)
 		before checkfs fsck
@@ -13,7 +13,7 @@ depend() {
 }
 
 start() {
-	if [ ! -e /lib/librc.so ]; then
+	if [ ! -f /etc/init.d/sysfs ]; then
 		eerror "The $SVCNAME init-script is written for baselayout-2!"
 		eerror "Please do not use it with baselayout-1!".
 		return 1






^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2009-01-17 22:53 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-01-17 22:44 [gentoo-commits] gentoo-x86 commit in sys-fs/lvm2/files: lvm.rc-2.02.28-r2 Robin H. Johnson (robbat2)
  -- strict thread matches above, loose matches on Subject: below --
2009-01-17 22:53 Robin H. Johnson (robbat2)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox