try again, with puppetforge modules, correctly included now
[mirror/dsa-puppet.git] / 3rdparty / modules / cinder / manifests / volume / iscsi.pp
1 #
2 class cinder::volume::iscsi (
3   $iscsi_ip_address,
4   $volume_driver     = 'cinder.volume.drivers.lvm.LVMISCSIDriver',
5   $volume_group      = 'cinder-volumes',
6   $iscsi_helper      = $::cinder::params::iscsi_helper,
7 ) {
8
9   include cinder::params
10
11   cinder::backend::iscsi { 'DEFAULT':
12     iscsi_ip_address   => $iscsi_ip_address,
13     volume_driver      => $volume_driver,
14     volume_group       => $volume_group,
15     iscsi_helper       => $iscsi_helper
16   }
17 }