source: clfs-embedded/bootscripts/clfs/etc/rc.d/init.d/functions@ 8ffda01

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

Added CLFS 3.x bootscripts

  • Property mode set to 100755
File size: 227 bytes
RevLine 
[a44b91b]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.