Skip to content

Commit 29dd2f1

Browse files
ekohlehelms
authored andcommitted
Remove defaults for parameters that have been removed
1 parent 4c129ef commit 29dd2f1

File tree

3 files changed

+4
-8
lines changed

3 files changed

+4
-8
lines changed

config/katello-answers.yaml

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -90,12 +90,8 @@ foreman_proxy::plugin::openscap: false
9090
foreman_proxy::plugin::remote_execution::ssh: false
9191
foreman_proxy::plugin::salt: false
9292
foreman_proxy::plugin::shellhooks: false
93-
foreman_proxy_content:
94-
proxy_pulp_yum_to_pulpcore: true
95-
proxy_pulp_deb_to_pulpcore: true
96-
katello:
97-
use_pulp_2_for_yum: false
98-
use_pulp_2_for_deb: false
93+
foreman_proxy_content: true
94+
katello: true
9995
puppet:
10096
server: true
10197
server_environments_owner: apache

config/katello.migrations/200605154320-dont-use-pulpcore-rpm-on-upgrades.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ def upgrade
66
answers[KATELLO][USE_PULP_2_FOR_YUM] = true
77
end
88

9-
upgrade if answers[KATELLO] && answers[KATELLO][USE_PULP_2_FOR_YUM].nil?
9+
upgrade if answers[KATELLO].is_a?(Hash) && answers[KATELLO][USE_PULP_2_FOR_YUM].nil?

config/katello.migrations/200611220455-dont-proxy-pulp-yum-to-pulpcore-on-upgrades.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ def upgrade
66
answers[FPC][PROXY_YUM] = false
77
end
88

9-
upgrade if answers[FPC] && answers[FPC][PROXY_YUM].nil?
9+
upgrade if answers[FPC].is_a?(Hash) && answers[FPC][PROXY_YUM].nil?

0 commit comments

Comments
 (0)