summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--manifests/init.pp8
1 files changed, 4 insertions, 4 deletions
diff --git a/manifests/init.pp b/manifests/init.pp
index 5139b1d..6a95f55 100644
--- a/manifests/init.pp
+++ b/manifests/init.pp
@@ -35,7 +35,7 @@ class bitcoind(
ensure => directory,
owner => 'bitcoin',
group => 'bitcoin',
- mode => 0750,
+ mode => '0750',
require => User['bitcoin'],
}
@@ -43,7 +43,7 @@ class bitcoind(
ensure => directory,
owner => 'bitcoin',
group => 'bitcoin',
- mode => 0750,
+ mode => '0750',
require => File['/var/lib/bitcoin'],
}
@@ -51,7 +51,7 @@ class bitcoind(
ensure => present,
owner => 'bitcoin',
group => 'bitcoin',
- mode => 0600,
+ mode => '0600',
content => template('bitcoind/bitcoin.conf.erb'),
require => File['/var/lib/bitcoin/.bitcoin'],
notify => Service['bitcoind'],
@@ -61,7 +61,7 @@ class bitcoind(
ensure => present,
owner => root,
group => root,
- mode => 0755,
+ mode => '0755',
content => template('bitcoind/bitcoind-init.d.sh.erb'),
notify => Service['bitcoind'],
}