[18:52] Anyone know the answer to this question?  https://unix.stackexchange.com/q/677368/256581 [19:32] Guest63: it seems like the hotplug related issue that was recently fixed [19:33] Guest63: https://github.com/canonical/cloud-init/pull/1069 [19:33] Pull 1069 in canonical/cloud-init "Add 'install hotplug' module (SC-476)" [Merged] [19:34] Guest63: fixed in cloud-init 21.4 [19:36] OK thanks.  Since this is an image which is under control of the host (Hetzner) and I'm not sure how long it will take to fix, how to I apply the patch "after the event" as it were? [19:36] minimal: thanks for fielding that. correct, fixed in 21.4 to avoid triggering that process when hotplug config is not set in user-data. Expected to publish this version of cloud-init to 18.04 Bionic, 20.04 Focal, 21.04 and 21.10 Monday or Tuesday [19:38] Guest63: you can safely remove /etc/udev/rules.d/10-cloud-init-hook-hotplug.rules and it will immediately stop any hotplug related action on your system [19:40] blackboxsw there is no such file [19:41] blackboxsw: you're welcome, where do I pick up my cheque? ;-) [20:15] blackboxsw you still there? [20:32] oops sorry was making lunch. [20:34] Guest63: so sorry thinko. /lib/udev/rules.d/10-cloud-init-hook-hotplug.rules can be removed on cloud-init 21.3 [20:34] it'll prevent the hotplug hook from firing on all device adds removes. [20:35] I'm wondering for context what general loads are being run on the system that are generating these udev events. [20:58] blackboxsw so just delete that without rebooting? [20:59] blackboxsw for example, in the cloud-init script I use when spinning up the server? [21:00] Guest63: rm -f /lib/udev/rules.d/10-cloud-init-hook-hotplug.rules; sudo udevadm control --reload-rules [21:00] this should not be a problem in about three days when cloud-init version 21.4 releases [21:00] but until then you could do that in a #cloud-config runcmd: [21:01] I'll test the cloud-config now to be sure [21:06] Guest63: confirmed the following user-data: [21:06] #cloud-config [21:06] runcmd: [21:06] - rm -f /lib/udev/rules.d/10-cloud-init-hook-hotplug.rules [21:06] - udevadm control --reload-rules [21:06] lxc launch ubuntu-daily:bionic bbb -c user.user-data="$(cat my.yaml)" [21:06] that removes the udev rules in my container [21:07] ok gotta run [22:28] blackboxsw thank you so much!