blob: 04e5a05075359a55a57b0984e2d53cffdc36a586 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#
# Run a simple command
#
cloud_config: |
#cloud-config
runcmd:
- echo cloud-init run cmd test > /tmp/run_cmd
collect_scripts:
run_cmd: |
#!/bin/bash
cat /tmp/run_cmd
# vi: ts=4 expandtab
|