slitaz-boot-scripts rev 439

etc/init.d/system.sh: remove redundant messages.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Thu Feb 02 09:19:47 2017 +0200 (2017-02-02)
parents 2c6e9733c232
children 354d476130a4
files etc/init.d/system.sh
line diff
     1.1 --- a/etc/init.d/system.sh	Fri Jan 27 17:36:12 2017 +0200
     1.2 +++ b/etc/init.d/system.sh	Thu Feb 02 09:19:47 2017 +0200
     1.3 @@ -26,7 +26,7 @@
     1.4  
     1.5  # Locale config
     1.6  if [ ! -s '/etc/locale.conf' ]; then
     1.7 -	echo 'Setting system locale to: POSIX (English)'
     1.8 +	# Setting system locale to: POSIX (English)
     1.9  	echo -e 'LANG=POSIX\nLC_ALL=POSIX' > /etc/locale.conf
    1.10  fi
    1.11  . /etc/locale.conf
    1.12 @@ -36,7 +36,7 @@
    1.13  
    1.14  # Keymap config: Default to us in live mode if kmap= was not used.
    1.15  if [ ! -s '/etc/keymap.conf' ]; then
    1.16 -	echo 'Setting system keymap to: us (USA)'
    1.17 +	# Setting system keymap to: us (USA)
    1.18  	echo 'us' > /etc/keymap.conf
    1.19  fi
    1.20  kmap=$(cat /etc/keymap.conf)