source: clfs-embedded/bootscripts/clfs/rc.d/init.d/functions@ ae024d6

Last change on this file since ae024d6 was ae024d6, checked in by Jim Gifford <clfs@…>, 18 years ago

Bootscripts Updates

  • Property mode set to 100755
File size: 227 bytes
Line 
1# Common Routines
2#
3
4# Check status and print
5# OK or FAIL
6#
7check_status()
8{
9 local ERR=$?
10 echo -en "\\033[65G"
11 if [ $ERR = 0 ]; then
12 echo -en "\\033[1;32OK"
13 else
14 echo -en "\\033[1;31mFAIL"
15 fi
16 echo -e "\\033[0;39m"
17}
Note: See TracBrowser for help on using the repository browser.