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

@ -44,7 +44,7 @@ class mythtv::backend {
file { "/etc/mythtv/mysql.txt":
ensure => present,
content => template("mythtv/mysql.txt.erb"),
mode => 0640,
mode => "0640",
owner => root,
group => mythtv,
notify => Service["mythbackend"],
@ -54,7 +54,7 @@ class mythtv::backend {
file { "/etc/mythtv/config.xml":
ensure => present,
content => template("mythtv/config.xml.erb"),
mode => 0640,
mode => "0640",
owner => root,
group => mythtv,
notify => Service["mythbackend"],
@ -64,7 +64,7 @@ class mythtv::backend {
file { "/etc/sysconfig/mythbackend":
ensure => present,
source => "puppet:///modules/mythtv/mythbackend",
mode => 0644,
mode => "0644",
owner => root,
group => root,
notify => Service["mythbackend"],
@ -88,7 +88,7 @@ class mythtv::backend {
file { "/etc/cron.daily/mythorphans":
ensure => present,
source => "puppet:///modules/mythtv/mythorphans",
mode => 0755,
mode => "0755",
owner => root,
group => root,
}
@ -109,7 +109,7 @@ class mythtv::cron inherits mythtv::backend {
file { "/etc/cron.daily/mythfilldatabase":
ensure => present,
source => "puppet:///modules/mythtv/mythfilldatabase",
mode => 0755,
mode => "0755",
owner => root,
group => root,
}
@ -117,7 +117,7 @@ class mythtv::cron inherits mythtv::backend {
file { "/etc/cron.daily/mythoptimize":
ensure => present,
source => "puppet:///modules/mythtv/mythoptimize",
mode => 0755,
mode => "0755",
owner => root,
group => root,
}
@ -159,7 +159,7 @@ class mythtv::mythweb {
file { "/usr/share/mythweb/data":
ensure => directory,
mode => 0770,
mode => "0770",
owner => root,
group => $apache::sslserver::group,
seltype => "httpd_sys_rw_content_t",