mirror of
https://github.com/Icinga/icingaweb2.git
synced 2025-09-26 11:19:14 +02:00
7 lines
164 B
Puppet
7 lines
164 B
Puppet
define parent_dirs {
|
|
exec { "parent_dirs-${name}":
|
|
command => "mkdir -p \"\$(dirname \"\$(readlink -m '${name}')\")\"",
|
|
path => '/bin:/usr/bin',
|
|
}
|
|
}
|