slitaz-boot-scripts diff etc/init.d/system.sh @ rev 446

network.sh: stop wpa_cli interactive mode with static_ip
author Richard Dunbar <mojo@slitaz.org>
date Fri Oct 27 12:18:19 2017 -0400 (2017-10-27)
parents 2c6e9733c232
children dacad4df6c6a
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	Fri Oct 27 12:18:19 2017 -0400
     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)