# temporary file
cat /proc/bus/pci/$ID > $TMP_FILE
-# Stopping network.
-
-# Check if NFS server functionality is desired
-if [ -f /etc/rc.d/init.d/named ]; then
- /etc/rc.d/init.d/named stop
-fi
-
-/etc/rc.d/init.d/network stop
-
echo "Entering suspend mode"
-# suspend
echo -n mem > /sys/power/state
echo "Resuming"
# on resume
cat $TMP_FILE > /proc/bus/pci/$ID
-/etc/rc.d/init.d/network start &
-
-if [ -f /etc/rc.d/init.d/named ]; then
- /etc/rc.d/init.d/named start
-fi
-
# remove temporary file
rm -f $TMP_FILE