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
|
@ -4,7 +4,7 @@ class ssh::known_hosts {
|
|||
|
||||
file { "/etc/ssh/ssh_known_hosts":
|
||||
ensure => present,
|
||||
mode => 0644,
|
||||
mode => "0644",
|
||||
owner => root,
|
||||
group => $operatingsystem ? {
|
||||
OpenBSD => wheel,
|
||||
|
@ -32,7 +32,7 @@ class ssh::hostkeys {
|
|||
file { "/etc/ssh/ssh_host_dsa_key":
|
||||
ensure => present,
|
||||
source => "puppet:///private/ssh_host_dsa_key",
|
||||
mode => 0600,
|
||||
mode => "0600",
|
||||
owner => root,
|
||||
group => $operatingsystem ? {
|
||||
openbsd => wheel,
|
||||
|
@ -42,7 +42,7 @@ class ssh::hostkeys {
|
|||
file { "/etc/ssh/ssh_host_dsa_key.pub":
|
||||
ensure => present,
|
||||
source => "puppet:///private/ssh_host_dsa_key.pub",
|
||||
mode => 0644,
|
||||
mode => "0644",
|
||||
owner => root,
|
||||
group => $operatingsystem ? {
|
||||
openbsd => wheel,
|
||||
|
@ -53,7 +53,7 @@ class ssh::hostkeys {
|
|||
file { "/etc/ssh/ssh_host_rsa_key":
|
||||
ensure => present,
|
||||
source => "puppet:///private/ssh_host_rsa_key",
|
||||
mode => 0600,
|
||||
mode => "0600",
|
||||
owner => root,
|
||||
group => $operatingsystem ? {
|
||||
openbsd => wheel,
|
||||
|
@ -63,7 +63,7 @@ class ssh::hostkeys {
|
|||
file { "/etc/ssh/ssh_host_rsa_key.pub":
|
||||
ensure => present,
|
||||
source => "puppet:///private/ssh_host_rsa_key.pub",
|
||||
mode => 0644,
|
||||
mode => "0644",
|
||||
owner => root,
|
||||
group => $operatingsystem ? {
|
||||
openbsd => wheel,
|
||||
|
@ -74,7 +74,7 @@ class ssh::hostkeys {
|
|||
file { "/etc/ssh/ssh_host_key":
|
||||
ensure => present,
|
||||
source => "puppet:///private/ssh_host_key",
|
||||
mode => 0600,
|
||||
mode => "0600",
|
||||
owner => root,
|
||||
group => $operatingsystem ? {
|
||||
openbsd => wheel,
|
||||
|
@ -84,7 +84,7 @@ class ssh::hostkeys {
|
|||
file { "/etc/ssh/ssh_host_key.pub":
|
||||
ensure => present,
|
||||
source => "puppet:///private/ssh_host_key.pub",
|
||||
mode => 0644,
|
||||
mode => "0644",
|
||||
owner => root,
|
||||
group => $operatingsystem ? {
|
||||
openbsd => wheel,
|
||||
|
@ -112,7 +112,7 @@ class ssh::disable {
|
|||
}
|
||||
file { "/etc/init/ssh.conf":
|
||||
ensure => present,
|
||||
mode => 0644,
|
||||
mode => "0644",
|
||||
owner => root,
|
||||
group => root,
|
||||
source => "puppet:///modules/ssh/ssh.disabled.conf",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue