From 572c9d6d16af9f3e62f4ea44c2c099796d4b5fe4 Mon Sep 17 00:00:00 2001 From: Jan Vcelak Date: Tue, 4 Jan 2011 17:39:10 +0100 Subject: [PATCH] initiscript: localization of insufficient privilege error --- tuned.initscript | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tuned.initscript b/tuned.initscript index 3b97280..52e6f54 100755 --- a/tuned.initscript +++ b/tuned.initscript @@ -31,7 +31,7 @@ lockfile=/var/lock/subsys/$prog start () { if [ $UID -ne 0 ] ; then - echo "User had insufficient privilege." + echo $"User has insufficient privilege." exit 4 fi [ -x $exec ] || exit 5 @@ -45,7 +45,7 @@ start () { stop () { if [ $UID -ne 0 ] ; then - echo "User had insufficient privilege." + echo $"User has insufficient privilege." exit 4 fi echo -n $"Stopping $prog: "