1
0
Fork 0

ktune/ktune.init: bz519019 - typos in init script

This commit is contained in:
Petr Lautrbach 2009-09-22 14:56:02 +02:00
parent 87d78ca171
commit 1abd2f44ba

View file

@ -185,11 +185,11 @@ stop() {
status() {
if [ ! -f "$VAR_SUBSYS_KTUNE" ]; then
echo $"ktune stettings are not applied."
echo $"ktune settings are not applied."
return 3
fi
echo $"Current ktune sysctl stettings:"
echo $"Current ktune sysctl settings:"
keys=$(awk '/^[#;]/ { next } /=/ { match($1,"=") && $1=substr($1,1,RSTART-1); print $1 }' "$SAVE_FILE")
for key in $keys; do
$SYSCTL_GET $key
@ -197,7 +197,7 @@ status() {
if [ -n "$ELEVATOR" -a -n "$SYS_BLOCK_SDX" -a $CMDLINE_ELEVATOR -ne 0 ]; then
echo
echo $"Current elevator stettings:"
echo $"Current elevator settings:"
for i in $SYS_BLOCK_SDX; do
echo -n "${i}: "; cat "$i"
done