summaryrefslogtreecommitdiffstats
path: root/manifests/brick.pp
diff options
context:
space:
mode:
authorJames Shubin <james@shubin.ca>2013-09-16 01:40:22 -0400
committerJames Shubin <james@shubin.ca>2013-09-16 01:40:22 -0400
commit3e9feb8d9af56fc29718376fd8505f6c94e6c3b6 (patch)
tree81d81cc48020c011b2fc56ad56b9a7e72e2683e8 /manifests/brick.pp
parent7e00d90ecc38812e0f24fc711523b778955d39c8 (diff)
downloadpuppet-gluster-3e9feb8d9af56fc29718376fd8505f6c94e6c3b6.tar.gz
puppet-gluster-3e9feb8d9af56fc29718376fd8505f6c94e6c3b6.tar.xz
puppet-gluster-3e9feb8d9af56fc29718376fd8505f6c94e6c3b6.zip
Nitpick cleanups.
Diffstat (limited to 'manifests/brick.pp')
-rw-r--r--manifests/brick.pp14
1 files changed, 7 insertions, 7 deletions
diff --git a/manifests/brick.pp b/manifests/brick.pp
index 889b752..2ac1d6e 100644
--- a/manifests/brick.pp
+++ b/manifests/brick.pp
@@ -163,17 +163,17 @@ define gluster::brick(
'/bin/false', # TODO: add more criteria
],
require => $exec_requires,
- timeout => 3600, # set to something very long
+ timeout => 3600, # set to something very long
noop => $exec_noop,
alias => "gluster-brick-make-${name}",
}
# make an empty directory for the mount point
file { "${valid_path}":
- ensure => directory, # make sure this is a directory
- recurse => false, # don't recurse into directory
- purge => false, # don't purge unmanaged files
- force => false, # don't purge subdirs and links
+ ensure => directory, # make sure this is a directory
+ recurse => false, # don't recurse into directory
+ purge => false, # don't purge unmanaged files
+ force => false, # don't purge subdirs and links
require => Exec["gluster-brick-make-${name}"],
}
@@ -185,12 +185,12 @@ define gluster::brick(
fstype => "${valid_fstype}",
# noatime,nodiratime to save gluster from silly updates
options => "${mount_options},${ro_bool},noatime,nodiratime,noexec", # TODO: is nodev? nosuid? noexec? a good idea?
- dump => '0', # fs_freq: 0 to skip file system dumps
+ dump => '0', # fs_freq: 0 to skip file system dumps
# NOTE: technically this should be '2', to `fsck.xfs`
# after the rootfs ('1'), but fsck.xfs actually does
# 'nothing, successfully', so it's irrelevant, because
# xfs uses xfs_check and friends only when suspect.
- pass => '2', # fs_passno: 0 to skip fsck on boot
+ pass => '2', # fs_passno: 0 to skip fsck on boot
require => [
File["${valid_path}"],
],