Switch config file owner to glance group

This commit is contained in:
Dan Bode 2012-10-03 22:06:43 -07:00
parent 78136fd915
commit c1002462b6
2 changed files with 2 additions and 2 deletions

View File

@ -68,7 +68,7 @@ class glance::api(
File {
ensure => present,
owner => 'glance',
group => 'root',
group => 'glance',
mode => '0640',
notify => Service['glance-api'],
require => Class['glance'],

View File

@ -24,7 +24,7 @@ class glance::registry(
File {
ensure => present,
owner => 'glance',
group => 'root',
group => 'glance',
mode => '0640',
notify => Service['glance-registry'],
require => Class['glance']