summaryrefslogtreecommitdiff
path: root/tests/cloud_tests/configs/modules/apt_configure_primary.yaml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/cloud_tests/configs/modules/apt_configure_primary.yaml')
-rw-r--r--tests/cloud_tests/configs/modules/apt_configure_primary.yaml26
1 files changed, 0 insertions, 26 deletions
diff --git a/tests/cloud_tests/configs/modules/apt_configure_primary.yaml b/tests/cloud_tests/configs/modules/apt_configure_primary.yaml
deleted file mode 100644
index 41bcf2fd..00000000
--- a/tests/cloud_tests/configs/modules/apt_configure_primary.yaml
+++ /dev/null
@@ -1,26 +0,0 @@
-#
-# Setup a custome primary sources.list
-#
-required_features:
- - apt
- - apt_src_cont
-cloud_config: |
- #cloud-config
- apt:
- primary:
- - arches:
- - default
- uri: "http://www.gtlib.gatech.edu/pub/ubuntu-releases/"
-collect_scripts:
- ubuntu.sources.list: |
- #!/bin/bash
- grep -v '^#' /etc/apt/sources.list | sed '/^\s*$/d' | grep -c archive.ubuntu.com
- gatech.sources.list: |
- #!/bin/bash
- grep -v '^#' /etc/apt/sources.list | sed '/^\s*$/d' | grep -c gtlib.gatech.edu
-
- sources.list: |
- #!/bin/bash
- cat /etc/apt/sources.list
-
-# vi: ts=4 expandtab