From 102885e31cfc75ce0e51f73fd7f39a0d79d8eb31 Mon Sep 17 00:00:00 2001 From: Cool Fire Date: Fri, 27 Dec 2019 10:29:37 +0100 Subject: [PATCH] Update puppet and image version --- .gitlab-ci.yml | 8 ++++---- README.md | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index d568a3e..6b69d39 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -10,8 +10,8 @@ librarian: stage: test script: - apt-get install -y -q wget ruby git - - wget https://apt.puppetlabs.com/puppet5-release-xenial.deb - - dpkg -i puppet5-release-xenial.deb + - wget https://apt.puppetlabs.com/puppet6-release-bionic.deb + - dpkg -i puppet6-release-bionic.deb - apt-get update -qq && apt-get install -y -qq puppet-agent - gem install --no-ri --no-rdoc librarian-puppet - export PATH=/opt/puppetlabs/bin:$PATH @@ -20,7 +20,7 @@ librarian: - librarian-puppet version - librarian-puppet install - librarian-puppet show - image: ubuntu:16.04 + image: ubuntu:18.04 deploy: stage: deploy @@ -31,6 +31,6 @@ deploy: - mkdir -p ~/.ssh - echo -e "Host *\n\tStrictHostKeyChecking no\n\n" > ~/.ssh/config - bash deploy.sh - image: ubuntu:16.04 + image: ubuntu:18.04 only: - master diff --git a/README.md b/README.md index 09c4de8..bb363a3 100644 --- a/README.md +++ b/README.md @@ -94,8 +94,8 @@ Now we need to log out and `vagrant ssh` back in to see if our changes worked. O All that is left to do now is to install puppet inside of the VM so we can provision stuff in there. We'll download and install the latest Puppet 5 repo package and use that to install puppet. ``` -wget https://apt.puppetlabs.com/puppet5-release-stretch.deb -sudo dpkg -i puppet5-release-stretch.deb +wget https://apt.puppetlabs.com/puppet6-release-buster.deb +sudo dpkg -i puppet6-release-buster.deb sudo apt update sudo apt install puppet-agent ``` -- GitLab