Parent Directory
|
Revision Log
Rename to trunk.
| 1 | otavio | 158 | #! /bin/sh |
| 2 | # | ||
| 3 | #int script for splashy | ||
| 4 | #made on March 2005 | ||
| 5 | # | ||
| 6 | |||
| 7 | PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin | ||
| 8 | NAME=splashy10 | ||
| 9 | |||
| 10 | set -e | ||
| 11 | |||
| 12 | case "$1" in | ||
| 13 | start) | ||
| 14 | if [ -x /usr/bin/tput ] && /usr/bin/tput hpa 60 >/dev/null 2>&1; then | ||
| 15 | GREEN=`tput setaf 2` | ||
| 16 | NORMAL=`tput op` | ||
| 17 | echo " $GREEN* Booting process at 10%$NORMAL" | ||
| 18 | else | ||
| 19 | echo " * Booting process at 10%" | ||
| 20 | fi | ||
| 21 | ;; | ||
| 22 | *) | ||
| 23 | N=/etc/init.d/$NAME | ||
| 24 | echo "Usage: $N {start}" >&2 | ||
| 25 | exit 1 | ||
| 26 | ;; | ||
| 27 | esac | ||
| 28 | |||
| 29 | exit 0 |
| Name | Value |
|---|---|
| svn:executable | * |
| ViewVC Help | |
| Powered by ViewVC 1.1.5 |