diff options
author | Roy Marples <uberlord@gentoo.org> | 2007-01-08 13:10:21 +0000 |
---|---|---|
committer | Roy Marples <uberlord@gentoo.org> | 2007-01-08 13:10:21 +0000 |
commit | 29d4af40aec36dc5115f11912297b33021021d59 (patch) | |
tree | f6d536dee72cd97f2434f7117f07113ec3491f00 /sys-apps/dbus | |
parent | Stable on sparc wrt #160535 (diff) | |
download | gentoo-2-29d4af40aec36dc5115f11912297b33021021d59.tar.gz gentoo-2-29d4af40aec36dc5115f11912297b33021021d59.tar.bz2 gentoo-2-29d4af40aec36dc5115f11912297b33021021d59.zip |
init script needs localmount so it can create a pidfile correctly.
init script is after bootmisc so the pidfile doesn't get erased in a
parallel boot.
(Portage version: 2.1.2_rc4-r6)
Diffstat (limited to 'sys-apps/dbus')
-rw-r--r-- | sys-apps/dbus/ChangeLog | 7 | ||||
-rw-r--r-- | sys-apps/dbus/files/dbus.init-1.0 | 5 |
2 files changed, 9 insertions, 3 deletions
diff --git a/sys-apps/dbus/ChangeLog b/sys-apps/dbus/ChangeLog index d2834b2b1d95..e78fd9eec7fa 100644 --- a/sys-apps/dbus/ChangeLog +++ b/sys-apps/dbus/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for sys-apps/dbus # Copyright 2000-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/dbus/ChangeLog,v 1.174 2007/01/05 18:41:48 compnerd Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/dbus/ChangeLog,v 1.175 2007/01/08 13:10:21 uberlord Exp $ + + 08 Jan 2007; Roy Marples <uberlord@gentoo.org> files/dbus.init-1.0: + init script needs localmount so it can create a pidfile correctly. + init script is after bootmisc so the pidfile doesn't get erased in a + parallel boot. 05 Jan 2007; Saleem Abdulrasool <compnerd@gentoo.org> dbus-0.62-r2.ebuild: fix up debug codepaths for qt bindings (bug #160112), disable qt4 on mips diff --git a/sys-apps/dbus/files/dbus.init-1.0 b/sys-apps/dbus/files/dbus.init-1.0 index ff24f2d53ac7..ba0f4e71c23c 100644 --- a/sys-apps/dbus/files/dbus.init-1.0 +++ b/sys-apps/dbus/files/dbus.init-1.0 @@ -1,12 +1,13 @@ #!/sbin/runscript # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License, v2 or later -# $Header: /var/cvsroot/gentoo-x86/sys-apps/dbus/files/dbus.init-1.0,v 1.1 2006/11/19 17:32:33 cardoe Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/dbus/files/dbus.init-1.0,v 1.2 2007/01/08 13:10:21 uberlord Exp $ opts="reload" depend() { - after nscd dns + need localmount + after bootmisc nscd dns } start() { |