~citrix-openstack/nova/xenapi

« back to all changes in this revision

Viewing changes to contrib/puppet/manifests/classes/lvmconf.pp

  • Committer: rlane at wikimedia
  • Date: 2011-03-03 23:04:11 UTC
  • mfrom: (408.9.363 nova)
  • mto: (408.9.366 nova)
  • mto: This revision was merged to the branch mainline in revision 449.
  • Revision ID: rlane@wikimedia.org-20110303230411-qx4qndimfyr1w1fx
MergeĀ fromĀ trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
class lvmconf {
2
 
  file { "/etc/lvm/lvm.conf":
3
 
    owner => "root", group => "root", mode  => 644,
4
 
    source => "puppet://${puppet_server}/files/etc/lvm/lvm.conf",
5
 
    ensure => present
6
 
  }
7
 
}
8