contrib/vmware-server/vmware.rc

24 lines
270 B
Plaintext
Raw Normal View History

2007-06-24 20:44:07 +02:00
#!/bin/sh
#
# /etc/rc.d/vmware: start/stop vmware services
#
case $1 in
start)
/etc/vmware/init.d/vmware start
;;
stop)
/etc/vmware/init.d/vmware stop
;;
restart)
$0 stop
sleep 2
$0 start
;;
*)
echo "usage: $0 [start|stop|restart]"
;;
esac
# vim: syntax=sh