summaryrefslogtreecommitdiffstats
path: root/bootstrap/ubuntu1004_bootstrap.sh
diff options
context:
space:
mode:
authorDimitrios Apostolou <jimis@qt.io>2020-04-14 12:23:59 +0200
committerDimitrios Apostolou <jimis@qt.io>2020-04-15 08:16:13 +0000
commitba38215cbb4b56a3bbb1e2ca59c792ad0932e1af (patch)
tree904b7bd2fe90fb522704d45ba0c7843b3a07076d /bootstrap/ubuntu1004_bootstrap.sh
parent27ea07ce272a750441b10195a34d37ffa7e902fb (diff)
Update the setup of the network test server
+ update expired repo key for puppetlabs + use old-releases.ubuntu.com, as the only location still having 10.04 + update instructions: script only runs with bash, not sh + update puppetlabs repo to install package from 12.04 even for 10.04, as the latter no longer exists online + the previous step installs puppet v3.8 instead of v2.7, so minor updates to the policy were needed too + update dante-server package URL to point to different repo, because the previous did not include amd64 package. Change-Id: Ie00be1aa393ca5607029e7694353f12e780f7beb Reviewed-by: Tony Sarajärvi <tony.sarajarvi@qt.io>
Diffstat (limited to 'bootstrap/ubuntu1004_bootstrap.sh')
-rwxr-xr-xbootstrap/ubuntu1004_bootstrap.sh5
1 files changed, 3 insertions, 2 deletions
diff --git a/bootstrap/ubuntu1004_bootstrap.sh b/bootstrap/ubuntu1004_bootstrap.sh
index e4bbcd5..8eda350 100755
--- a/bootstrap/ubuntu1004_bootstrap.sh
+++ b/bootstrap/ubuntu1004_bootstrap.sh
@@ -66,8 +66,9 @@ fi
PUPPETLIST_FILE=/etc/apt/sources.list.d/bootstrap-puppet.list
if ! test -e $PUPPETLIST_FILE; then
echo Setting up bootstrap-puppet.list...
- echo -e 'deb http://apt.puppetlabs.com/ lucid main\ndeb-src http://apt.puppetlabs.com/ lucid main' > $PUPPETLIST_FILE
- apt-key adv --keyserver keyserver.ubuntu.com --recv 4BD6EC30
+ echo 'deb http://apt.puppetlabs.com/ precise main' > $PUPPETLIST_FILE
+ echo 'deb-src http://apt.puppetlabs.com/ precise main' >> $PUPPETLIST_FILE
+ apt-key adv --keyserver keyserver.ubuntu.com --recv 7F438280EF8D349F
apt-get update
else
echo bootstrap-puppet.list already exist