Commit ed1374c2 authored by Rane Squires's avatar Rane Squires

Add resource to create directory if does not exist

parent dded3ba9
Pipeline #43 canceled with stages
......@@ -6,9 +6,14 @@
# include anaconda::environments
class anaconda::environments {
file { '/opt/envs':
ensure => directory,
}
file { '/opt/envs/vanilla3.yml':
ensure => present,
source => 'puppet:///modules/anaconda/vanilla3.yml',
require => File['/opt/envs'],
}
exec { 'setupvanilla3':
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment