Fixed "unquoted file mode" errors given by puppet-lint.

This commit is contained in:
Timo Mkinen 2012-03-27 16:10:01 +03:00
parent 17341ec85c
commit 84edcd61ed
64 changed files with 512 additions and 512 deletions

View file

@ -2,16 +2,16 @@ class amanda::common {
file { "/var/lib/amanda/.ssh":
ensure => directory,
mode => 0700,
owner => amandabackup,
group => disk,
mode => "0700",
owner => "amandabackup",
group => "disk",
}
file { "/var/lib/amanda/.ssh/authorized_keys":
ensure => present,
mode => 0600,
owner => amandabackup,
group => disk,
mode => "0600",
owner => "amandabackup",
group => "disk",
require => File["/var/lib/amanda/.ssh"],
}
@ -45,9 +45,9 @@ class amanda::client inherits amanda::common {
file { "/etc/amanda/amanda-client.conf":
ensure => present,
mode => 0644,
owner => amandabackup,
group => disk,
mode => "0644",
owner => "amandabackup",
group => "disk",
content => template("amanda/amanda-client.conf.erb"),
require => Package["amanda-enterprise-backup-client"],
}