Make bootctl is-installed quiet

This commit is contained in:
Dennis ten Hoove 2024-02-27 13:50:25 +01:00
parent dd4cd95d1d
commit caa6dcf201

2
arkdep
View file

@ -217,7 +217,7 @@ init () {
# Ensure systemd-boot is installed before continuing, for it is the only thing we support
# Do not run if ARKDEP_NO_BOOTCTL defined
if [[ ! $ARKDEP_NO_BOOTCTL -eq 1 ]]; then
bootctl is-installed || cleanup_and_quit 'systemd-boot seems to not be installed'
bootctl -q is-installed || cleanup_and_quit 'systemd-boot seems to not be installed'
else
printf '\e[1;33m<!>\e[0m\e[1m Not running bootctl is-installed because overwritten with ARKDEP_NO_BOOTCTL\e[0m\n'
fi