From a4a25465cd2844d72bf518188b813c009450f505 Mon Sep 17 00:00:00 2001 From: Bill Nottingham Date: Tue, 23 Jan 2001 19:59:11 +0000 Subject: change i18n stuff around; don't call gettext explicitly, just do echo $"some string" --- sysconfig/network-scripts/ifup-sl | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'sysconfig/network-scripts/ifup-sl') diff --git a/sysconfig/network-scripts/ifup-sl b/sysconfig/network-scripts/ifup-sl index 2b53b93e..27be5fe3 100755 --- a/sysconfig/network-scripts/ifup-sl +++ b/sysconfig/network-scripts/ifup-sl @@ -1,4 +1,4 @@ -#!/bin/sh +#!/bin/bash TEXTDOMAIN=initscripts PATH=/sbin:/usr/sbin:/bin:/usr/bin . /etc/rc.d/init.d/functions @@ -30,10 +30,10 @@ if [ -z "$RETRYTIMEOUT" ]; then fi [ -x /usr/sbin/dip ] || { - gprintf "%s does not exist or is not executable\n" "/usr/sbin/dip" - gprintf "%s for %s exiting\n" "ifup-sl" "$DEVICE" + echo $"/usr/sbin/dip does not exist or is not executable" + echo $"ifup-sl for $DEVICE exiting" logger -p daemon.info -t ifup-sl \ - "/usr/sbin/dip does not exist or is not executable for $DEVICE" + $"/usr/sbin/dip does not exist or is not executable for $DEVICE" exit 1 } @@ -42,17 +42,17 @@ DIPSCRIPT=/etc/sysconfig/network-scripts/dip-$DEVNAME DIPSCRIPT=/etc/sysconfig/network-scripts/dip-$PARENTDEVNAME } [ -f $DIPSCRIPT ] || { - gprintf "%s does not exist\n" "/etc/sysconfig/network-scripts/dip-$DEVICE" - gprintf "%s for %s exiting\n" "ifup-sl" "$DEVICE" + echo $"/etc/sysconfig/network-scripts/dip-$DEVICE does not exist" + echo $"ifup-sl for $DEVICE exiting" logger -p daemon.info -t ifup-sl \ - "/etc/sysconfig/network-scripts/dip-$DEVICE does not exist for $DEVICE" + $"/etc/sysconfig/network-scripts/dip-$DEVICE does not exist for $DEVICE" exit 1 } while : ; do echo > /var/run/sl-$DEVICE.dev (logger -p daemon.info -t ifup-sl \ - "dip started for $DEVICE on $MODEMPORT at $LINESPEED" &)& + $"dip started for $DEVICE on $MODEMPORT at $LINESPEED" &)& doexec /usr/sbin/dip dip-$DEVICE $DIPSCRIPT if [ "$PERSIST" != "yes" -o ! -f /var/run/sl-$DEVICE.dev ] ; then exit 0 -- cgit v1.2.1