##// END OF EJS Templates
fixes...
fixes - replaced backticks with $() - enhanced iptables fix - more escape fixes thx to shellcheck.net (no sponsor just a nice page) - if-conditions (!-z equals -n) - if piping find in xargs - use -print0 | -0 (shellcheck.net) - added selecting mmc dev 0 in uboot.mkimg

Fichier de la dernière révision:

r142:14de70396904
r338:5dd9ea36ae5f
Show More
31-logging.sh
13 lines | 301 B | application/x-sh | BashLexer
#
# Setup Logging
#
# Load utility functions
. ./functions.sh
# Disable rsyslog
if [ "$ENABLE_RSYSLOG" = false ] ; then
sed -i "s|[#]*ForwardToSyslog=yes|ForwardToSyslog=no|g" "${ETC_DIR}/systemd/journald.conf"
chroot_exec systemctl disable rsyslog
chroot_exec apt-get -qq -y purge rsyslog
fi