btrfs_subvolume_create creates only subvolumes. btrfs_subvolume_delete deletes subvolumes or snapshots.
Signed-off-by: Hu Tao <[email protected]> --- generator/actions.ml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/generator/actions.ml b/generator/actions.ml index 89332f5..fe492e6 100644 --- a/generator/actions.ml +++ b/generator/actions.ml @@ -10248,19 +10248,19 @@ of the snapshot, in the form C</path/to/dest/name>." }; ["btrfs_subvolume_create"; "/test1"]; ["btrfs_subvolume_delete"; "/test1"]]), [] ]; - shortdesc = "delete a btrfs snapshot"; + shortdesc = "delete a btrfs subvolume or snapshot"; longdesc = "\ -Delete the named btrfs subvolume." }; +Delete the named btrfs subvolume or snapshot." }; { defaults with name = "btrfs_subvolume_create"; style = RErr, [Pathname "dest"], []; proc_nr = Some 324; optional = Some "btrfs"; camel_name = "BTRFSSubvolumeCreate"; - shortdesc = "create a btrfs snapshot"; + shortdesc = "create a btrfs subvolume"; longdesc = "\ Create a btrfs subvolume. The C<dest> argument is the destination -directory and the name of the snapshot, in the form C</path/to/dest/name>." }; +directory and the name of the subvolume, in the form C</path/to/dest/name>." }; { defaults with name = "btrfs_subvolume_list"; -- 1.9.3 _______________________________________________ Libguestfs mailing list [email protected] https://www.redhat.com/mailman/listinfo/libguestfs
