Puppet Class: discos
- Defined in:
- manifests/init.pp
Summary
A short summary of the purpose of this classOverview
A description of what this class does
7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
# File 'manifests/init.pp', line 7
class discos {
file { '/mnt/data':
ensure => directory,
owner => 'root',
group => 'root',
mode => '0755',
}
mount { '/mnt/data':
ensure => 'mounted',
device => '/dev/sdb',
options => 'defaults',
fstype => 'ext4',
atboot => true,
pass => 2,
}
}
|