mirror of
https://github.com/armbian/build.git
synced 2025-08-11 21:56:58 +02:00
- fix a bunch of quoting issues - use runners for chroot stuff - don't error out of failed disable - makes building `sid` again possible - add a bunch of TODO's
8 lines
236 B
Bash
8 lines
236 B
Bash
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
|
|
}
|