Removes neutron ownership of certs

Since neutron UID is not static, setting the owners on the certificates
in the host to be 'neutron' will not match the UID for neutron in the
deployed container.  Therefore this patch removes the host neutron
ownership and leaves it as root, so that it can be later modified in the
container to be chowned to neutron.

Partial-Bug: 1759049

Change-Id: I83b14b91d1ee600bd9d5863acba34303921368ce
Signed-off-by: Tim Rozet <trozet@redhat.com>
This commit is contained in:
Tim Rozet 2018-03-28 11:27:02 -07:00
parent 05cef8859a
commit fe09335418
2 changed files with 4 additions and 4 deletions

View File

@ -62,13 +62,9 @@ class tripleo::certmonger::neutron (
require => Class['::certmonger'],
}
file { $service_certificate :
owner => 'neutron',
group => 'neutron',
require => Certmonger_certificate['neutron']
}
file { $service_key :
owner => 'neutron',
group => 'neutron',
require => Certmonger_certificate['neutron']
}

View File

@ -0,0 +1,4 @@
---
fixes:
- |
Removes neutron ownership of certificates.