#!/bin/sh
#
# [NetBSD for NEC PC98 series]
#  Copyright (c) 2001 NetBSD/pc98 porting staff.
#  All rights reserved.
#
VSC_ACTION_REQUEST_MARK=/tmp/vsc-action.request

if [ -e $VSC_ACTION_REQUEST_MARK ]; then
	/sbin/reboot
#	/sbin/halt -p
else
	echo "System will GO DOWN if ctrl+alt+del again !!!" > /dev/console
	echo "action requested" > $VSC_ACTION_REQUEST_MARK
fi
