8e053ee7cb
enhancements: - Simple command-line tools to interface with VMware host - Guest OS scripts that can be triggered by the VMware host - Startup script When compiled with X11 support (the default), this release also provides: - GTK+-based GUI to configure time sync, device connections, and scripts - Helper application to interface with the xf86-video-vmware driver, enabling dynamic screen resize
18 lines
346 B
Bash
Executable file
18 lines
346 B
Bash
Executable file
#!@RCD_SCRIPTS_SHELL@
|
|
#
|
|
# $NetBSD: vmtools.sh,v 1.1 2008/08/31 06:36:47 scottr Exp $
|
|
#
|
|
|
|
# PROVIDE: vmtools
|
|
# REQUIRE: DAEMON
|
|
|
|
$_rc_subr_loaded . /etc/rc.subr
|
|
|
|
name="vmtools"
|
|
rcvar="vmtools"
|
|
pidfile="/var/run/vmware-guestd.pid"
|
|
command="@PREFIX@/sbin/vmware-guestd"
|
|
command_args="--background ${pidfile}"
|
|
|
|
load_rc_config $name
|
|
run_rc_command "$1"
|