Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion acceptance/pre_suite/00_master_setup.rb
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@

# Install a puppet-agent package on the master:
test_name "Pre-Suite: Install puppet-agent #{description} on the master" do
install_options[:nightly_yum_repo_url] = 'https://artifactory.delivery.puppetlabs.net:443/artifactory/internal_nightly__local/yum'
install_puppet_agent_on(master, install_options)

agent_version = puppet_agent_version_on(master)
Expand All @@ -30,7 +31,10 @@

step 'Install puppetserver' do
# puppetserver is distributed in "release streams" instead of collections.
opts = { release_stream: install_options[:puppet_collection] }
opts = {
release_stream: install_options[:puppet_collection],
nightly_yum_repo_url: 'https://artifactory.delivery.puppetlabs.net:443/artifactory/internal_nightly__local/yum'
}

install_puppetserver_on(master, opts)

Expand Down
Loading