We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7833ce7 commit 7e4f2d0Copy full SHA for 7e4f2d0
.github/workflows/ci.yml
@@ -105,6 +105,11 @@ jobs:
105
FILE='spec/fixtures/litmus_inventory.yaml'
106
sed -e 's/password: .*/password: "[redacted]"/' < $FILE || true
107
108
+ - name: "Fix Debian 10 EOL repositories"
109
+ if: contains(matrix.platforms.image, 'debian-10') || contains(matrix.platforms.image, 'buster')
110
+ run: |
111
+ bundle exec bolt command run "sed -i 's|deb.debian.org|archive.debian.org|g' /etc/apt/sources.list && sed -i 's|security.debian.org|archive.debian.org|g' /etc/apt/sources.list && sed -i '/buster-updates/d' /etc/apt/sources.list" -t ssh_nodes -i spec/fixtures/litmus_inventory.yaml
112
+
113
- name: "Install Puppet agent"
114
run: |
115
if [[ "${{ matrix.collection.version }}" ]] ; then
0 commit comments