I'm collecting all the packages that ship any .service files and will try to have them co-installed, so see if that causes any issues with the new netplan-configure.service during early boot.
$ apt-file search --regexp '/lib/systemd/system/.*\.service$' | cut -d: -f1 | sort -u > services.txt $ while read pkg; do section=$(apt-cache show "$pkg" 2>/dev/null | grep-dctrl -sSection -n . | head -n1); echo "$pkg -- $section"; done < services.txt > all.txt $ cat all.txt | grep -v "\-\- universe/" | cut -d " " -f 1 > services-main.txt $ sudo apt install $(cat services-main.txt | egrep -v "(systemd-timesyncd|nvidia-compute-utils-580|busybox-syslogd|power-profiles|nvidia-kernel-common-580|containerd|nvidia-fabricmanager-570|nvidia-imex-570|postfix|exim4-daemon-light)" | xargs) [...] Summary: Upgrading: 11, Installing: 1775, Removing: 0, Not Upgrading: 45 Download size: 1305 MB Space needed: 4667 MB / 5358 MB available ** Attachment added: "all.txt" https://bugs.launchpad.net/ubuntu/+source/netplan.io/+bug/2133724/+attachment/5931156/+files/all.txt -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/2133724 Title: Enable Netplan split generator To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/netplan.io/+bug/2133724/+subscriptions -- ubuntu-bugs mailing list [email protected] https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
