summaryrefslogtreecommitdiff
path: root/tests/cloud_tests/testcases/modules/apt_configure_conf.yaml
blob: de45300061735fb19eeaf5cc1b2cf3d09b7da358 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#
# Provide a configuration for APT
#
required_features:
  - apt
cloud_config: |
  #cloud-config
  apt:
    conf: |
      APT {
          Get {
              Assume-Yes "true";
              Fix-Broken "true";
          }
      }
collect_scripts:
  94cloud-init-config: |
    #!/bin/bash
    cat /etc/apt/apt.conf.d/94cloud-init-config

# vi: ts=4 expandtab