#!/bin/bash
test=`/bin/ps -A | /bin/grep getty`
if [ -f /proc/progress ] && [ ! -n "$test" ]; then
    echo -e '\033[?1;0c'>/dev/tty11
    /usr/bin/chvt 11
    echo s > /proc/progress
    echo 53 > /proc/progress
fi
