From 00079f64935182dbb459d660409d042c25efb7cb Mon Sep 17 00:00:00 2001 From: Sergei Petrosian Date: Tue, 21 May 2024 12:15:19 +0200 Subject: [PATCH] docs(changelog): version 1.3.3 [citest skip] Update changelog and .README.html for version 1.3.3 Signed-off-by: Sergei Petrosian --- .README.html | 11 +++++++++++ CHANGELOG.md | 7 +++++++ 2 files changed, 18 insertions(+) diff --git a/.README.html b/.README.html index ca99a6a..152f765 100644 --- a/.README.html +++ b/.README.html @@ -164,6 +164,8 @@

Contents

id="toc-snapshot_lvm_mountpoint">snapshot_lvm_mountpoint
  • snapshot_lvm_mount_origin
  • +
  • snapshot_lvm_mount_options
  • snapshot_lvm_unmount_all
  • snapshot_lvm_action snapshot_lvm_percent_space_required space allocated to the snapshot. Allocations are rounded up to the next multiple of the volume group extent size.

  • +
  • mount: Mount a filesystem on a mount point

  • +
  • umount: Unmount a filesytem

  • snapshot_lvm_set

    The snapshot role supports sets of volumes. Sets may contain any @@ -363,6 +367,13 @@

    snapshot_lvm_mount_origin

    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.

    +

    snapshot_lvm_mount_options

    +

    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.

    snapshot_lvm_unmount_all

    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 --------------------