Re: Prevent new instances from updating/rebooting?

2021-09-23 Thread Michael Kesper
Hi Dick, Am 23.09.21 um 11:52 schrieb Dick Visser: > To answer my own question: yes this is possible, by using a cloud-init > style user data blob: > > > #cloud-init > package_update: false > package_upgrade: false > package_reboot_if_required: false What speaks against just using the third

Prevent new instances from updating/rebooting?

2021-09-23 Thread Dick Visser
Hi I noticed that newly created bullseye-amd64 AWS instances auto update/reboot themselves at instantiating time. We would like to do that ourselves, so the process is more predictable. The auto reboots currently cause issues during our deployment because it is not possible to predict if/when

Re: Prevent new instances from updating/rebooting?

2021-09-23 Thread Dick Visser
To answer my own question: yes this is possible, by using a cloud-init style user data blob: #cloud-init package_update: false package_upgrade: false package_reboot_if_required: false On Thu, 23 Sept 2021 at 11:17, Dick Visser wrote: > > Hi > > I noticed that newly created bullseye-amd64 AWS