slitaz-boot-scripts rev 438

etc/init.d/system.sh: fix messaging.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Fri Jan 27 17:36:12 2017 +0200 (2017-01-27)
parents 30df2eac7040
children 7763f4f1665c
files etc/init.d/system.sh
line diff
     1.1 --- a/etc/init.d/system.sh	Wed Jan 11 09:50:20 2017 +0100
     1.2 +++ b/etc/init.d/system.sh	Fri Jan 27 17:36:12 2017 +0200
     1.3 @@ -30,7 +30,7 @@
     1.4  	echo -e 'LANG=POSIX\nLC_ALL=POSIX' > /etc/locale.conf
     1.5  fi
     1.6  . /etc/locale.conf
     1.7 -action 'Setting system locale: $LANG'
     1.8 +action 'Setting system locale: %s' "$LANG"
     1.9  export LC_ALL=$LANG
    1.10  status
    1.11  
    1.12 @@ -40,7 +40,7 @@
    1.13  	echo 'us' > /etc/keymap.conf
    1.14  fi
    1.15  kmap=$(cat /etc/keymap.conf)
    1.16 -action 'Loading console keymap: $kmap'
    1.17 +action 'Loading console keymap: %s' "$kmap"
    1.18  /sbin/tazkeymap $kmap >/dev/null
    1.19  status
    1.20