Probably I had an error in the code, although no error was raised (or at least I didn't catch it): ``` if [ -z "${DEVICE}" ]; then # _set_available_devices_to_up fi ```
An empty if-statement is not valid (at least in BASH it's not acceptable). Trying to correct to: ``` if [ -z "${DEVICE}" ]; then # _set_available_devices_to_up local dummyvar=1 fi ``` -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/2065037 Title: dhcpcd is called before interfaces have carrier causing a 29 seconds boot delay To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/initramfs-tools/+bug/2065037/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs