##// END OF EJS Templates
Merge pull request #220 from VonOx/custom-firstboot...
Merge pull request #220 from VonOx/custom-firstboot Fix #207 Update 50-firstboot.sh to handle custom firstboot scripts - thanks to VonOx for the fix!

Fichier de la dernière révision:

r142:14de70396904
r743:55670e666952 Fusion
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