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] lib: Executing: /bin/sh -c "ls ps whoami " ``` Those commands should be executed separately.
Cloud config file:
System logs indicate that those commands are joined into one string:
Those commands should be executed separately.