Skip to content

Commit

Permalink
Fixes #30075: Ensure /etc/pki/pulp/content exists
Browse files Browse the repository at this point in the history
  • Loading branch information
ehelms committed Jun 9, 2020
1 parent 6712577 commit 2a49570
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions manifests/config.pp
Expand Up @@ -17,6 +17,13 @@
show_diff => $pulp::show_conf_diff,
}

file { '/etc/pki/pulp/content':
ensure => directory,
owner => 'apache',
group => 'apache',
mode => '0755',
}

file { '/etc/pki/pulp/content/pulp-global-repo.ca':
ensure => link,
target => $pulp::ca_cert,
Expand Down

0 comments on commit 2a49570

Please sign in to comment.