28126406d2
and not without ok's and the proper process.
12 lines
152 B
Bash
12 lines
152 B
Bash
#!/bin/sh
|
|
# $OpenBSD: vmware-vmmon_unload.sh,v 1.3 2005/03/07 18:15:09 todd Exp $
|
|
|
|
dev=/dev/vmmon
|
|
rm=/bin/rm
|
|
|
|
if [ -c $dev ]; then
|
|
$rm $dev
|
|
fi
|
|
|
|
exit 0
|