blob: 2ec30ca188fb8b34360bc668abfcb4acf0990f93 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#
# Setup a custome primary sources.list
#
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
# vi: ts=4 expandtab
|