armbian-build/lib/functions/rootfs/systemd-utils.sh

8 lines
236 B
Bash
Raw Normal View History

function disable_systemd_service_sdcard() {
display_alert "Disabling systemd service(s) on target" "${*}" "debug"
declare service
for service in "${@}"; do
chroot_sdcard systemctl --no-reload disable "${service}" "||" true
done
}