lib/beaker-pe/install/pe_utils.rb in beaker-pe-2.1.10 vs lib/beaker-pe/install/pe_utils.rb in beaker-pe-2.1.11
- old
+ new
@@ -788,11 +788,11 @@
# We only need answers if we're using the classic installer
version = host['pe_ver'] || opts[:pe_ver]
if host['roles'].include?('frictionless') && (! version_is_less(version, '3.2.0'))
# If We're *not* running the classic installer, we want
# to make sure the master has packages for us.
- if host['platform'] != master['platform'] # only need to do this if platform differs
+ if host['packaging_platform'] != master['packaging_platform'] # only need to do this if platform differs
deploy_frictionless_to_master(host)
end
install_ca_cert_on(host, opts)
on host, installer_cmd(host, opts)
configure_type_defaults_on(host)
@@ -1882,10 +1882,10 @@
step "Setup frictionless installer on the master" do
agent_nodes.each do |agent|
# If We're *not* running the classic installer, we want
# to make sure the master has packages for us.
- if agent['platform'] != master['platform'] # only need to do this if platform differs
+ if agent['packaging_platform'] != master['packaging_platform'] # only need to do this if platform differs
deploy_frictionless_to_master(agent)
end
end
end