Fixed "unquoted file mode" errors given by puppet-lint.
This commit is contained in:
parent
17341ec85c
commit
84edcd61ed
64 changed files with 512 additions and 512 deletions
|
@ -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"],
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue