##// END OF EJS Templates
Fix networking with systemd...
Fix networking with systemd With newer systemd builds, systemd-networkd does not boot anymore, leading to the network being disabled. Installing libnss-systemd resolves this problem, but it is not available on Jessie systems.

Fichier de la dernière révision:

r142:14de70396904
r239:ff13545cc5c8
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