# HG changeset patch # User Aleksej Bobylev # Date 1486019987 -7200 # Node ID 7763f4f1665c02c3c4e3bd025945a797441b7c8f # Parent 2c6e9733c2327814f285c58a33fe608663ad2764 etc/init.d/system.sh: remove redundant messages. diff -r 2c6e9733c232 -r 7763f4f1665c etc/init.d/system.sh --- a/etc/init.d/system.sh Fri Jan 27 17:36:12 2017 +0200 +++ b/etc/init.d/system.sh Thu Feb 02 09:19:47 2017 +0200 @@ -26,7 +26,7 @@ # Locale config if [ ! -s '/etc/locale.conf' ]; then - echo 'Setting system locale to: POSIX (English)' + # Setting system locale to: POSIX (English) echo -e 'LANG=POSIX\nLC_ALL=POSIX' > /etc/locale.conf fi . /etc/locale.conf @@ -36,7 +36,7 @@ # Keymap config: Default to us in live mode if kmap= was not used. if [ ! -s '/etc/keymap.conf' ]; then - echo 'Setting system keymap to: us (USA)' + # Setting system keymap to: us (USA) echo 'us' > /etc/keymap.conf fi kmap=$(cat /etc/keymap.conf)