diff options
author | Nick Groenen <zoni@zoni.nl> | 2013-04-21 12:03:43 +0200 |
---|---|---|
committer | Nick Groenen <zoni@zoni.nl> | 2013-04-21 12:15:41 +0200 |
commit | 2712963d1b42b91030a2ccc81c3dcbc3df92ab82 (patch) | |
tree | 1b05fa8269261de67e328db2df9001a97edc507b | |
parent | 4d8d040186d45556f5ba37ba311c0ec06e94499b (diff) |
Conform to Puppet style guide
Fixes: puppet-lint "ERROR: two-space soft tabs not used" error
-rw-r--r-- | manifests/requirements.pp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/manifests/requirements.pp b/manifests/requirements.pp index cae32bf..2fabb96 100644 --- a/manifests/requirements.pp +++ b/manifests/requirements.pp @@ -48,10 +48,10 @@ define python::requirements ( $req_crc = "${requirements}.sha1" - # This will ensure multiple python::virtualenv definitions can share the - # the same requirements file. - if !defined(File[$requirements]) { - file { $requirements: + # This will ensure multiple python::virtualenv definitions can share the + # the same requirements file. + if !defined(File[$requirements]) { + file { $requirements: ensure => present, mode => '0644', owner => 'root', |