Skip to content

Commit

Permalink
Fixes #13658 - pulp_client_key and pulp_client_cert not being set cor…
Browse files Browse the repository at this point in the history
…rectly
  • Loading branch information
John Mitsch committed Feb 10, 2016
1 parent 6b6b7b0 commit c271e16
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 9 deletions.
12 changes: 12 additions & 0 deletions manifests/config.pp
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,16 @@
mode => '0750',
}

foreman_config_entry { 'pulp_client_cert':
value => $client_cert,
ignore_missing => false,
before => Exec['foreman-rake-db:migrate'],
}

foreman_config_entry { 'pulp_client_key':
value => $client_key,
ignore_missing => false,
before => Exec['foreman-rake-db:migrate'],
}

}
9 changes: 0 additions & 9 deletions manifests/pulp_client.pp
Original file line number Diff line number Diff line change
Expand Up @@ -44,13 +44,4 @@
}
}

foreman_config_entry { 'pulp_client_cert':
value => $client_cert,
ignore_missing => false,
}

foreman_config_entry { 'pulp_client_key':
value => $client_key,
ignore_missing => false,
}
}

0 comments on commit c271e16

Please sign in to comment.