This commit is contained in:
parent
b5ebe1006c
commit
264a25b7d4
@ -1,3 +1,11 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon Jun 2 11:11:17 CEST 2008 - prusnak@suse.cz
|
||||
|
||||
- updated vmware init-script [bnc#394431]:
|
||||
* check whether /tmp/VMwareDnD exists and create it if necessary
|
||||
* use modules vmblock, vmmemctl, vmsync for better performance
|
||||
* mount the virtual system for Drag'n'Drop
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu May 22 10:20:14 CEST 2008 - prusnak@suse.cz
|
||||
|
||||
|
@ -15,7 +15,7 @@ Name: open-vm-tools
|
||||
Group: System/Emulators/PC
|
||||
Summary: Open Virtual Machine Tools
|
||||
Version: 2008.04.14
|
||||
Release: 16
|
||||
Release: 18
|
||||
%define svn_rev 87182
|
||||
Url: http://open-vm-tools.sourceforge.net/
|
||||
License: BSD 3-Clause; GPL v2 only; LGPL v2.1 only
|
||||
@ -238,6 +238,11 @@ rm -rf $RPM_BUILD_ROOT
|
||||
%{_datadir}/pixmaps/vmware*
|
||||
|
||||
%changelog
|
||||
* Mon Jun 02 2008 prusnak@suse.cz
|
||||
- updated vmware init-script [bnc#394431]:
|
||||
* check whether /tmp/VMwareDnD exists and create it if necessary
|
||||
* use modules vmblock, vmmemctl, vmsync for better performance
|
||||
* mount the virtual system for Drag'n'Drop
|
||||
* Thu May 22 2008 prusnak@suse.cz
|
||||
- added Recommends: open-vm-tools to KMP preamble [bnc#391434]
|
||||
- added -y to %%fillup_and_insserv macro, so the service starts
|
||||
|
11
vmware-guest
11
vmware-guest
@ -70,6 +70,13 @@ rc_reset
|
||||
case "$1" in
|
||||
start)
|
||||
echo -n "Starting vmware-guestd "
|
||||
if [ ! -d /tmp/VMwareDnD ]; then
|
||||
mkdir -m 1777 /tmp/VMwareDnD
|
||||
fi
|
||||
modprobe vmblock
|
||||
mount -t vmblock none /proc/fs/vmblock/mountPoint
|
||||
modprobe vmmemctl
|
||||
modprobe vmsync
|
||||
## Start daemon with startproc(8). If this fails
|
||||
## the return value is set appropriately by startproc.
|
||||
/sbin/startproc $VMGUEST_BIN
|
||||
@ -83,6 +90,10 @@ case "$1" in
|
||||
## killproc sets the return value according to LSB.
|
||||
|
||||
/sbin/killproc -TERM $VMGUEST_BIN
|
||||
umount /proc/fs/vmblock/mountPoint
|
||||
modprobe -r vmblock
|
||||
modprobe -r vmsync
|
||||
modprobe -r vmmemctl
|
||||
|
||||
# Remember status and be verbose
|
||||
rc_status -v
|
||||
|
Loading…
x
Reference in New Issue
Block a user