puppet-swift/manifests/storage/mount.pp
Dan Bode 900096f27d Remove comma from last define parameter
The commit removes the comma trailing the last
parameter in the swift::storage::mount definition.

This was causing a parser failure.
2012-01-23 11:44:11 -08:00

44 lines
1.1 KiB
Puppet

#
# Usage
# swift::storage::mount
#
#
define swift::storage::mount(
$device,
$mnt_base_dir = '/srv/node'
) {
# the directory that represents the mount point
# needs to exist
file { "${mnt_base_dir}/${name}":
ensure => directory,
owner => 'swift',
group => 'swift',
}
mount { "${mnt_base_dir}/${name}":
ensure => present,
device => $device,
fstype => 'xfs',
options => 'loop,noatime,nodiratime,nobarrier,logbufs=8',
require => File["${mnt_base_dir}/${name}"]
}
# double checks to make sure that things are mounted
exec { "mount_${name}":
command => "mount ${mnt_base_dir}/${name}",
path => ['/bin'],
require => Mount["${mnt_base_dir}/${name}"],
unless => "grep ${mnt_base_dir}/${name} /etc/mtab",
# TODO - this needs to be removed when I am done testing
logoutput => true,
}
exec { "fix_mount_permissions_${name}":
command => "chown -R swift:swift ${mnt_base_dir}/${name}",
path => ['/usr/sbin', '/bin'],
subscribe => Exec["mount_${name}"],
refreshonly => true,
}
}