From 9770bd10ffb1ad43410bcb0808f99caa36a0850c Mon Sep 17 00:00:00 2001 From: Daniel Parks Date: Sun, 25 Sep 2022 00:39:33 -0700 Subject: [PATCH 1/2] Fix acceptance tests Previously, acceptance tests were failing during the initial installation of fixtures: > Cloning into 'spec/fixtures/modules/puppet_agent'... > fatal: unable to connect to github.com: > github.com\[0: 140.82.113.4]: errno=Connection timed out This switches to using `https` URLs for the fixtures, which allows acceptance tests to proceed beyond that point. --- .fixtures.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.fixtures.yml b/.fixtures.yml index 1b56a64c2..d59a99b44 100644 --- a/.fixtures.yml +++ b/.fixtures.yml @@ -1,6 +1,6 @@ fixtures: repositories: - facts: 'git://github.com/puppetlabs/puppetlabs-facts.git' - provision: 'git://github.com/puppetlabs/provision.git' - puppet_agent: 'git://github.com/puppetlabs/puppetlabs-puppet_agent.git' + facts: 'https://github.com/puppetlabs/puppetlabs-facts.git' + provision: 'https://github.com/puppetlabs/provision.git' + puppet_agent: 'https://github.com/puppetlabs/puppetlabs-puppet_agent.git' symlinks: [] From 5ded11c603c4d28837526ad4a6919ad362041497 Mon Sep 17 00:00:00 2001 From: Daniel Parks Date: Sun, 25 Sep 2022 00:50:45 -0700 Subject: [PATCH 2/2] Ignore Litmus inventory file. --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index 535a8eee0..4776cdfa8 100644 --- a/.gitignore +++ b/.gitignore @@ -39,6 +39,7 @@ Gemfile.lock /log/ /*.gem /spec/acceptance/nodesets/ +/spec/fixtures/litmus_inventory.yaml /spec/fixtures/modules/ /spec/fixtures/manifests/ /inventory.yaml