diff options
| author | varac <varacanero@zeromail.org> | 2016-04-25 16:41:34 -0300 | 
|---|---|---|
| committer | varac <varacanero@zeromail.org> | 2016-04-25 16:41:34 -0300 | 
| commit | 07f8cf9c307471128eef1ded3a77633869c89bcd (patch) | |
| tree | 22705e582bb300936db0fb343402011b704f9596 /puppet/modules/try | |
| parent | 2c5d27327bc1a90f5813e55a40d0acac644a13eb (diff) | |
| parent | f2f2c7391056c252523730cd76ab759db9117c9c (diff) | |
Merge branch 'linting' into develop
Diffstat (limited to 'puppet/modules/try')
| -rw-r--r-- | puppet/modules/try/manifests/file.pp | 26 | 
1 files changed, 13 insertions, 13 deletions
| diff --git a/puppet/modules/try/manifests/file.pp b/puppet/modules/try/manifests/file.pp index cd1bb035..2493d343 100644 --- a/puppet/modules/try/manifests/file.pp +++ b/puppet/modules/try/manifests/file.pp @@ -32,17 +32,17 @@ define try::file (    exec {      "chmod_${name}":        command => "/bin/chmod -R ${mode} '${name}'", -      onlyif => "/usr/bin/test $mode", +      onlyif => "/usr/bin/test ${mode}",        refreshonly => true,        loglevel => debug;      "chown_${name}":        command => "/bin/chown -R ${owner} '${name}'", -      onlyif => "/usr/bin/test $owner", +      onlyif => "/usr/bin/test ${owner}",        refreshonly => true,        loglevel => debug;      "chgrp_${name}":        command => "/bin/chgrp -R ${group} '${name}'", -      onlyif => "/usr/bin/test $group", +      onlyif => "/usr/bin/test ${group}",        refreshonly => true,        loglevel => debug;    } @@ -50,31 +50,31 @@ define try::file (    if $target {      exec { "symlink_${name}":        command => "/bin/ln -s ${target} ${name}", -      onlyif => "/usr/bin/test -d '${target}'", +      onlyif  => "/usr/bin/test -d '${target}'",      }    } elsif $source {      if $ensure == 'directory' {        if $purge {          exec { "rsync_${name}":            command => "/usr/bin/rsync -r --delete '${source}/' '${name}'", -          onlyif => "/usr/bin/test -d '${source}'", -          unless => "/usr/bin/diff -rq '${source}' '${name}'", -          notify => [Exec["chmod_${name}"], Exec["chown_${name}"], Exec["chgrp_${name}"]] +          onlyif  => "/usr/bin/test -d '${source}'", +          unless  => "/usr/bin/diff -rq '${source}' '${name}'", +          notify  => [Exec["chmod_${name}"], Exec["chown_${name}"], Exec["chgrp_${name}"]]          }        } else {          exec { "cp_r_${name}":            command => "/bin/cp -r '${source}' '${name}'", -          onlyif => "/usr/bin/test -d '${source}'", -          unless => "/usr/bin/diff -rq '${source}' '${name}'", -          notify => [Exec["chmod_${name}"], Exec["chown_${name}"], Exec["chgrp_${name}"]] +          onlyif  => "/usr/bin/test -d '${source}'", +          unless  => "/usr/bin/diff -rq '${source}' '${name}'", +          notify  => [Exec["chmod_${name}"], Exec["chown_${name}"], Exec["chgrp_${name}"]]          }        }      } else {        exec { "cp_${name}":          command => "/bin/cp --remove-destination '${source}' '${name}'", -        onlyif => "/usr/bin/test -e '${source}'", -        unless => "/usr/bin/test ! -h '${name}' && /usr/bin/diff -q '${source}' '${name}'", -        notify => [Exec["chmod_${name}"], Exec["chown_${name}"], Exec["chgrp_${name}"]] +        onlyif  => "/usr/bin/test -e '${source}'", +        unless  => "/usr/bin/test ! -h '${name}' && /usr/bin/diff -q '${source}' '${name}'", +        notify  => [Exec["chmod_${name}"], Exec["chown_${name}"], Exec["chgrp_${name}"]]        }      }    } | 
