summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--manifests/config.pp2
-rw-r--r--manifests/init.pp2
2 files changed, 2 insertions, 2 deletions
diff --git a/manifests/config.pp b/manifests/config.pp
index c2883fd..1a9eb91 100644
--- a/manifests/config.pp
+++ b/manifests/config.pp
@@ -3,7 +3,7 @@ define database::config($value, $ensure = 'present') {
ensure => $ensure,
owner => root,
group => root,
- mode => 0644,
+ mode => '0644',
content => "[mysqld]\n${name} = ${value}\n",
notify => Service['mysql'],
}
diff --git a/manifests/init.pp b/manifests/init.pp
index 92add17..90b1342 100644
--- a/manifests/init.pp
+++ b/manifests/init.pp
@@ -10,7 +10,7 @@ class database {
ensure => absent,
owner => root,
group => root,
- mode => 0644,
+ mode => '0644',
content => "mysql soft nofile 24000\nmysql hard nofile 32000\n",
}