summaryrefslogtreecommitdiff
path: root/tests/cloud_tests/configs/examples/run_commands.yaml
blob: b0e311ba1c4c3d60594c4864fb6a1c7b6a4d9257 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#
# From cloud config examples on cloudinit.readthedocs.io
#
# 2016-11-17: Disabled as covered by module based tests
#
enabled: False
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