Skip to content

Commit

Permalink
tt
Browse files Browse the repository at this point in the history
  • Loading branch information
alvagante committed Sep 25, 2024
1 parent 0028fb7 commit 7ecf47d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
3 changes: 1 addition & 2 deletions manifests/info.pp
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,8 @@
if $run.type =~ Array {
$array_run = $run
} else {
$array_run = split($run, ',')
$array_run = [$run]
}

file { "${puppi::params::infodir}/${name}":
ensure => file,
mode => '0750',
Expand Down
2 changes: 1 addition & 1 deletion manifests/log.pp
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
if $log.type =~ Array {
$array_log = $log
} else {
$array_log = split($log, ',')
$array_rlog = [$log]
}

file { "${puppi::params::logsdir}/${name}":
Expand Down
2 changes: 1 addition & 1 deletion manifests/todo.pp
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
if $run.type =~ Array {
$array_run = $run
} else {
$array_run = split($run, ',')
$array_run = [$run]
}

file { "${puppi::params::tododir}/${name}":
Expand Down

0 comments on commit 7ecf47d

Please sign in to comment.