Jakub Dlugolecki
Results
2
issues of
Jakub Dlugolecki
According to the original documentation of the `cloud-config`: https://cloudinit.readthedocs.io/en/latest/topics/examples.html#run-commands-on-first-boot > "if the item is a list, the items will be properly executed as if passed to execve(3) (with the first...
Cloud config file: ``` #cloud-config --- preserve_hostname: true runcmd: - ls - ps - whoami ``` System logs indicate that those commands are joined into one string: ``` ucd[626]: [4.282477]...
bug