aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBill Nottingham <notting@redhat.com>2003-01-14 05:36:53 +0000
committerBill Nottingham <notting@redhat.com>2003-01-14 05:36:53 +0000
commit04743dec20383d6d1e76d87330f8ec757a8769cf (patch)
tree0049e03d6e90061767b4ce54e9988a9784c6ed0b
parent4a4059c3051332e858cf0699aa2441a93c8a2620 (diff)
downloadinitscripts-04743dec20383d6d1e76d87330f8ec757a8769cf.tar
initscripts-04743dec20383d6d1e76d87330f8ec757a8769cf.tar.gz
initscripts-04743dec20383d6d1e76d87330f8ec757a8769cf.tar.bz2
initscripts-04743dec20383d6d1e76d87330f8ec757a8769cf.tar.xz
initscripts-04743dec20383d6d1e76d87330f8ec757a8769cf.zip
unmark some strings
-rwxr-xr-xrc.d/init.d/halt2
-rwxr-xr-xrc.d/rc.sysinit4
2 files changed, 3 insertions, 3 deletions
diff --git a/rc.d/init.d/halt b/rc.d/init.d/halt
index b9c082b3..9063feda 100755
--- a/rc.d/init.d/halt
+++ b/rc.d/init.d/halt
@@ -12,7 +12,7 @@ NOLOCALE=1
. /etc/init.d/functions
runcmd() {
- echo -n $"$1 "
+ echo -n "$1 "
shift
if [ "$BOOTUP" = "color" ]; then
$* && echo_success || echo_failure
diff --git a/rc.d/rc.sysinit b/rc.d/rc.sysinit
index 31c867a6..26aec6eb 100755
--- a/rc.d/rc.sysinit
+++ b/rc.d/rc.sysinit
@@ -51,9 +51,9 @@ fi
# Print a text banner.
echo -en $"\t\tWelcome to "
if grep -q "Red Hat" /etc/redhat-release ; then
- [ "$BOOTUP" = "color" ] && echo -en $"\\033[0;31m"
+ [ "$BOOTUP" = "color" ] && echo -en "\\033[0;31m"
echo -en "Red Hat"
- [ "$BOOTUP" = "color" ] && echo -en $"\\033[0;39m"
+ [ "$BOOTUP" = "color" ] && echo -en "\\033[0;39m"
PRODUCT=`sed "s/Red Hat \(.*\) release.*/\1/" /etc/redhat-release`
echo " $PRODUCT"
else