From 00079f64935182dbb459d660409d042c25efb7cb Mon Sep 17 00:00:00 2001
From: Sergei Petrosian Contents
id="toc-snapshot_lvm_mountpoint">snapshot_lvm_mountpoint
mount
: Mount a filesystem on a mount point
umount
: Unmount a filesytem
The snapshot role supports sets of volumes. Sets may contain any @@ -363,6 +367,13 @@
If set to true, mount the origin of the snapshot rather than the snapshot. When used inside of a snapset definition, use mount_origin parameter.
+Options to pass to the mount command for the filesystem. The argument +is a comma separated list. See the man page for mount for details. Note +that XFS by default will not allow multiple filesystems with the same +UUID to be mounted at the same time. Using the "nouuid" will bypass the +duplicate UUID check and allow a snapshot to be mounted at the same time +as the snapshot source.
If set to true, unmount all mountpoint for the resulting blockdevice. Linux allows filesystems to be mounted in multiple locations. Setting diff --git a/CHANGELOG.md b/CHANGELOG.md index 23e159b..ba7c9c1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,13 @@ Changelog ========= +[1.3.3] - 2024-05-21 +-------------------- + +### Other Changes + +- refactor: translate command line arguments into JSON format and use common functions (#55) + [1.3.2] - 2024-04-04 --------------------