Displaying 1 result from an estimated 1 matches for "lv_partition".
2008 May 27
8
How to manage partitions and logical volumes with puppet?
...tems and logical volumes on different servers. Specifically
I would like to be able to define on a series of nodes different LVM logical
volumes to create and mount.
I''m trying to do this at the moment with a define of the following type:
# Manage a partition and create if needed.
define lv_partition(
    $name     = "partition",
    $location = "/tmp",
    $lvsize   = "1G",
    $fstype   = "ext3",
    $vgname   = "vg00",
    $lvname   = $name,
    $owner    = "root",
    $group    = "root",
    $mode     = "755" )...