summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorLuca Boccassi <bluca@debian.org>2022-08-25 23:02:29 +0100
committerLuca Boccassi <bluca@debian.org>2022-08-25 23:02:29 +0100
commit255963ec3a092a3e8b8b0896b45b1ad3ec60f988 (patch)
treea57a687b2e1ce994d52d886a815884407c1603c1 /.github
parentabd6faae80fa87ecc24a000447b86fc32499809d (diff)
downloadsystemd-255963ec3a092a3e8b8b0896b45b1ad3ec60f988.tar.gz
mkosi: disable isc-dhcp-server again
It's still failing in Ubuntu: ● isc-dhcp-server.service loaded failed failed ISC DHCP IPv4 server ● isc-dhcp-server6.service loaded failed failed ISC DHCP IPv6 server Just disable them via the kernel command line masking.
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/mkosi.yml3
1 files changed, 2 insertions, 1 deletions
diff --git a/.github/workflows/mkosi.yml b/.github/workflows/mkosi.yml
index c2c12f3393..acb215dc79 100644
--- a/.github/workflows/mkosi.yml
+++ b/.github/workflows/mkosi.yml
@@ -20,7 +20,8 @@ permissions:
env:
# Enable debug logging in systemd, but keep udev's log level to info,
# since it's _very_ verbose in the QEMU task
- KERNEL_CMDLINE: "systemd.unit=mkosi-check-and-shutdown.service !quiet systemd.log_level=debug systemd.log_target=console udev.log_level=info systemd.default_standard_output=journal+console"
+ # Disable the ISC DHCP servers, as they are failing in Ubuntu
+ KERNEL_CMDLINE: "systemd.unit=mkosi-check-and-shutdown.service !quiet systemd.log_level=debug systemd.log_target=console udev.log_level=info systemd.default_standard_output=journal+console systemd.mask=isc-dhcp-server6.service systemd.mask=isc-dhcp-server.service"
jobs:
ci: