Skip to content

Commit

Permalink
Actually use new owner/group/mode cluster parameters (#83)
Browse files Browse the repository at this point in the history
  • Loading branch information
treydock committed Apr 11, 2022
1 parent f473803 commit 901b285
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions manifests/cluster.pp
Original file line number Diff line number Diff line change
Expand Up @@ -163,9 +163,9 @@

file { "/etc/ood/config/clusters.d/${name}.yml":
ensure => 'file',
owner => 'root',
group => 'root',
mode => '0644',
owner => $owner,
group => $group,
mode => $mode,
content => template('openondemand/cluster/main.yml.erb'),
notify => Class['openondemand::service'],
}
Expand Down

0 comments on commit 901b285

Please sign in to comment.