openbsd-ports/emulators/vmware/3/files/vmware-vmmon_unload.sh
2005-03-07 18:15:09 +00:00

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