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

12 lines
153 B
Bash

#!/bin/sh
# $OpenBSD: vmware-linuxrtc_unload.sh,v 1.3 2005/03/07 18:15:09 todd Exp $
dev=/dev/rtc
rm=/bin/rm
if [ -c $dev ]; then
$rm $dev
fi
exit 0