summaryrefslogtreecommitdiff
path: root/tests/cloud_tests/testcases/examples/install_arbitrary_packages.yaml
blob: d398022831be48fc5264377b822c9efaf064d819 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#
# From cloud config examples on cloudinit.readthedocs.io
#
# 2016-11-17: Disabled as covered by module based tests
#
enabled: False
cloud_config: |
  #cloud-config
  packages:
   - htop
   - tree
collect_scripts:
  htop: |
    #!/bin/bash
    dpkg -l | grep htop | wc -l
  tree: |
    #!/bin/bash
    dpkg -l | grep tree | wc -l

# vi: ts=4 expandtab