Created
February 15, 2013 07:05
-
-
Save mbornoz/4958925 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class srv-epflldap { | |
### Global attributes ########################## | |
### LVM partitions ############################# | |
class {'generic-tmpl::os::lvm': | |
volume_group => 'vg0', | |
physical_volumes => ['/dev/vda2'], | |
logical_volumes => { | |
'opt' => {'size' => '20G'}, | |
'tmp' => {'size' => '1G' }, | |
'usr' => {'size' => '3G' }, | |
'var' => {'size' => '15G'}, | |
'home' => {'size' => '5G' }, | |
'mnt' => {'size' => '1G' }, | |
'backup' => { | |
'size' => '5G', | |
'mountpath' => '/var/backups' | |
} | |
} | |
} | |
### OS ######################################### | |
include os-kis-managed | |
### MW ######################################### | |
include generic-tmpl::mw::rsyncd | |
### APP (generic) ############################## | |
class {'app-cognac-ldap': ldaptree => 'epfl'} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment