Skip to content

Commit

Permalink
Fixes #33577 - Only enable Foreman Puppet plugin with Foreman
Browse files Browse the repository at this point in the history
If the user passed in --no-enable-foreman then the Foreman plugin should
not be enabled.
  • Loading branch information
ekohl committed Sep 28, 2021
1 parent e56d06d commit 1b39736
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
unless answers.key?('foreman::plugin::puppet')
answers['foreman::plugin::puppet'] = true
answers['foreman::plugin::puppet'] = (answers['foreman'] != false)
end
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
unless answers.key?('foreman::plugin::puppet')
answers['foreman::plugin::puppet'] = true
answers['foreman::plugin::puppet'] = (answers['foreman'] != false)
end

0 comments on commit 1b39736

Please sign in to comment.