Skip to content

Commit

Permalink
Merge pull request #401 from bastelfreak/issue_351
Browse files Browse the repository at this point in the history
peadm::install: Depend code-manager setup on r10k remote presence, not r10k ssh key
  • Loading branch information
ragingra authored Oct 30, 2023
2 parents f212c47 + 6a82476 commit c673e58
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions plans/subplans/install.pp
Original file line number Diff line number Diff line change
Expand Up @@ -136,10 +136,10 @@
$r10k_private_key = peadm::file_or_content('r10k_private_key', $r10k_private_key_file, $r10k_private_key_content)

# enable code manager if:
# * it isn't explicitly disabled *and* the user provided r10k repo+key
# * it isn't explicitly disabled *and* the user provided r10k repo (key is optional, repo could be a local absolute path or https URL)
# * a replica is present
# * one or multiple compiler are present
$_code_manager_auto_configure = if $r10k_private_key and $code_manager_auto_configure {
$_code_manager_auto_configure = if $r10k_remote and $code_manager_auto_configure {
true
} elsif $replica_host {
true
Expand Down

0 comments on commit c673e58

Please sign in to comment.