You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
#!/bin/sh -e
|
|
|
|
#
|
|
|
|
# rc.local
|
|
|
|
#
|
|
|
|
# This script is executed at the end of each multiuser runlevel.
|
|
|
|
# Make sure that the script will "exit 0" on success or any other
|
|
|
|
# value on error.
|
|
|
|
#
|
|
|
|
# In order to enable or disable this script just change the execution
|
|
|
|
# bits.
|
|
|
|
#
|
|
|
|
# By default this script does nothing.
|
|
|
|
|
|
|
|
# TGC #3
|
|
|
|
# first line is just to buy some time to avoid text mixing up with other messages
|
|
|
|
echo "" | toilet -f ascii12 -w 100 --metal > /dev/console
|
|
|
|
echo "TETRA\nGAMMA\nCIRCULAIRE\n #3" | toilet -f ascii12 -w 100 --metal > /dev/console
|
|
|
|
/usr/bin/printf "\033[0;31m`/sbin/ifconfig | grep "inet addr" | grep -v "127.0.0.1" | awk '{ print $2 }' | awk -F: '{ print $2 }'` \033[0m\n" > /dev/console
|
|
|
|
echo "" > /dev/console
|
|
|
|
|
|
|
|
# Restore audio levels
|
|
|
|
alsactl --file /etc/asound.state restore
|
|
|
|
|
|
|
|
|
|
|
|
exit 0
|