summaryrefslogtreecommitdiff
path: root/tests/cloud_tests/configs/modules/apt_configure_conf.yaml
blob: 163ae3fc8effb31e2f009f46301ba7e5f8b9eb2b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#
# Provide a configuration for 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