#!/bin/sh
##############################################################################
# $Id: disable_power_management,v 1.1 2002/03/21 19:05:07 root Exp $
##############################################################################
# Tell the power management software not to shut this box down even if it
# is idle.
##############################################################################
# $Log: disable_power_management,v $
# Revision 1.1  2002/03/21 19:05:07  root
# Initial revision
#
##############################################################################

echo
echo "Start of $0"
echo '  $Id: disable_power_management,v 1.1 2002/03/21 19:05:07 root Exp $'

BASE=/a

echo "  Disabling power management"
touch $BASE/noautoshutdown
chmod 644 $BASE/noautoshutdown

echo "End of $0"

