From 13c5576c4082df63a12bc2ab0d70cb44cdf6cec8 Mon Sep 17 00:00:00 2001 From: Tobias Powalowski Date: Fri, 8 Apr 2022 10:17:20 +0200 Subject: [PATCH] silence netctl --- usr/lib/archboot/installer/autoconfiguration.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/usr/lib/archboot/installer/autoconfiguration.sh b/usr/lib/archboot/installer/autoconfiguration.sh index bcca91e2c..90ebf1c76 100644 --- a/usr/lib/archboot/installer/autoconfiguration.sh +++ b/usr/lib/archboot/installer/autoconfiguration.sh @@ -52,7 +52,7 @@ auto_network() [[ -d ${DESTDIR}/etc/netctl ]] && cp /etc/netctl/* "${DESTDIR}"/etc/netctl/ 2>/dev/null # enable netctl profiles for i in $(echo /etc/netctl/*); do - [[ -f $i ]] && systemd-nspawn -q -D "${DESTDIR}" netctl enable "$(basename "${i}")" + [[ -f $i ]] && systemd-nspawn -q -D "${DESTDIR}" netctl enable "$(basename "${i}")" >/dev/null 2>&1 done # copy proxy settings if [[ "${PROXY_HTTP}" != "" ]]; then