puppetlabs-lvm
puppetlabs-lvm copied to clipboard
Puppet Module to manage LVM
The Mount resource default statement is dependent on a resource not managed by the module so it bombs out; the exec statement at the bottom of logical_volume doesn't consistently execute...
blkid returns error code 2 if a path does not exist, which causes puppet to bail and not remove the lv. A similar issue was already fixed for resizing (https://github.com/puppetlabs/puppetlabs-lvm/pull/188/files)....
_e.g._ ```yaml logical_volumes: opt: size: 20G use_fs_label: true ``` will then lead to * formating the filesystem by `mkfs.ext4 -L opt /dev/vg-xyz/opt`. the most `mkfs`'s implement the `-L` label-parameter. So...
Adds facts for the extends in the volume groups (size, count, free extends) Also sets the units to megabytes (of 1024k) Otherwise the --nosuffix option was not used, and we...
Hello all, I created [MODULES-9779](https://tickets.puppetlabs.com/browse/) which describes how certains flags used in facts aren't supported with older versions of lvm2 (namely on RHEL 5.11). For instance, the following flags don't...
Hello I use the filesystem resource to manage whole disks rather than partitions and mkfs.ext4 gives a y/n question unless the force (-F) flag is given. this patch does that....
This commit fixes broken physical device provisioning in case of symlink usage. Jira issue: https://tickets.puppetlabs.com/browse/MODULES-9914 With 'followsymlinks' enabled we should have correct set of physical volumes (should, is) in order...
… updated lvm_spec tests to use the more modern syntax This PR addresses https://tickets.puppetlabs.com/browse/MODULES-1938
If device has no file system yet, `blkid` return no TYPE information in its output on Ubuntu 16.04. This results is the following error output in Puppet: ``` Debug: Executing:...
Made it possible to use the mapper devices to mount the filesytems.