diff options
author | Diego Elio Pettenò <flameeyes@gentoo.org> | 2008-02-01 12:33:36 +0000 |
---|---|---|
committer | Diego Elio Pettenò <flameeyes@gentoo.org> | 2008-02-01 12:33:36 +0000 |
commit | d0bd8b7507602805ad1483ea4fe05dac35163a84 (patch) | |
tree | cf5c0b8f0b9eb99852745f6ec2546302467450b1 /app-emulation/open-vm-tools | |
parent | stable x86, bug 208366 (diff) | |
download | gentoo-2-d0bd8b7507602805ad1483ea4fe05dac35163a84.tar.gz gentoo-2-d0bd8b7507602805ad1483ea4fe05dac35163a84.tar.bz2 gentoo-2-d0bd8b7507602805ad1483ea4fe05dac35163a84.zip |
Update init script to work with current development version of OpenRC (checkroot -> root; checkfs -> fsck).
(Portage version: 2.1.4.1)
Diffstat (limited to 'app-emulation/open-vm-tools')
-rw-r--r-- | app-emulation/open-vm-tools/ChangeLog | 6 | ||||
-rw-r--r-- | app-emulation/open-vm-tools/files/open-vm.initd | 4 |
2 files changed, 7 insertions, 3 deletions
diff --git a/app-emulation/open-vm-tools/ChangeLog b/app-emulation/open-vm-tools/ChangeLog index 5f802b27f955..88ae12ea7561 100644 --- a/app-emulation/open-vm-tools/ChangeLog +++ b/app-emulation/open-vm-tools/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for app-emulation/open-vm-tools # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-emulation/open-vm-tools/ChangeLog,v 1.4 2008/01/31 14:48:02 ikelos Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-emulation/open-vm-tools/ChangeLog,v 1.5 2008/02/01 12:33:36 flameeyes Exp $ + + 01 Feb 2008; Diego Pettenò <flameeyes@gentoo.org> files/open-vm.initd: + Update init script to work with current development version of OpenRC + (checkroot -> root; checkfs -> fsck). 31 Jan 2008; Mike Auty <ikelos@gentoo.org> ChangeLog: Re-sign digestless manifest. diff --git a/app-emulation/open-vm-tools/files/open-vm.initd b/app-emulation/open-vm-tools/files/open-vm.initd index 66cbdabf94a6..d4f96cc87655 100644 --- a/app-emulation/open-vm-tools/files/open-vm.initd +++ b/app-emulation/open-vm-tools/files/open-vm.initd @@ -1,7 +1,7 @@ #!/sbin/runscript # Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-emulation/open-vm-tools/files/open-vm.initd,v 1.1 2007/12/22 17:32:12 ikelos Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-emulation/open-vm-tools/files/open-vm.initd,v 1.2 2008/02/01 12:33:36 flameeyes Exp $ DND_TMPDIR="/tmp/VMwareDnD" USER_GROUP="root:vmware" @@ -11,7 +11,7 @@ PIDFILE="/var/run/vmware-guestd.pid" MOUNTPOINT="/proc/fs/vmblock/mountPoint" depend() { - before checkfs net X + before checkfs fsck net X } start() { |