summaryrefslogtreecommitdiff
path: root/tests/cloud_tests/configs/modules/apt_configure_disable_suites.yaml
blob: 73e4a53852f2386ab3e5e54ab78075f42344f813 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#
# Disables everything in sources.list
#
cloud_config: |
  #cloud-config
  apt:
    disable_suites:
      - $RELEASE
      - $RELEASE-updates
      - $RELEASE-backports
      - $RELEASE-security
collect_scripts:
  sources.list: |
    #!/bin/bash
    grep -v '^#' /etc/apt/sources.list | sed '/^\s*$/d'

# vi: ts=4 expandtab