Module for running ZFS command
codeauthor: | Nitin Madhok <nmadhok@clemson.edu>, Jorge Schrauwen <sjorge@blackdot.be> |
---|---|
maintainer: | Jorge Schrauwen <sjorge@blackdot.be> |
maturity: | new |
depends: | salt.utils.zfs |
platform: | illumos,freebsd,linux |
Changed in version 2018.3.1: Big refactor to remove duplicate code, better type converions and improved consistancy in output.
Creates a bookmark of the given snapshot
Note
Bookmarks mark the point in time when the snapshot was created, and can be used as the incremental source for a zfs send command.
This feature must be enabled to be used. See zpool-features(5) for details on ZFS feature flags and the bookmarks feature.
New in version 2016.3.0.
CLI Example:
salt '*' zfs.bookmark myzpool/mydataset@yesterday myzpool/mydataset#complete
Creates a clone of the given snapshot.
Note
ZFS properties can be specified at the time of creation of the filesystem by passing an additional argument called "properties" and specifying the properties with their respective values in the form of a python dictionary:
properties="{'property1': 'value1', 'property2': 'value2'}"
New in version 2016.3.0.
CLI Example:
salt '*' zfs.clone myzpool/mydataset@yesterday myzpool/mydataset_yesterday
Create a ZFS File System.
Note
ZFS properties can be specified at the time of creation of the filesystem by passing an additional argument called "properties" and specifying the properties with their respective values in the form of a python dictionary:
properties="{'property1': 'value1', 'property2': 'value2'}"
New in version 2015.5.0.
CLI Example:
salt '*' zfs.create myzpool/mydataset [create_parent=True|False] salt '*' zfs.create myzpool/mydataset properties="{'mountpoint': '/export/zfs', 'sharenfs': 'on'}" salt '*' zfs.create myzpool/volume volume_size=1G [sparse=True|False]` salt '*' zfs.create myzpool/volume volume_size=1G properties="{'volblocksize': '512'}" [sparse=True|False]
Destroy a ZFS File System.
Warning
watch out when using recursive and recursive_all
New in version 2015.5.0.
CLI Example:
salt '*' zfs.destroy myzpool/mydataset [force=True|False]
Display the difference between a snapshot of a given filesystem and another snapshot of that filesystem from a later time or the current contents of the filesystem.
New in version 2016.3.0.
CLI Example:
salt '*' zfs.diff myzpool/mydataset@yesterday myzpool/mydataset
Check if a ZFS filesystem or volume or snapshot exists.
New in version 2015.5.0.
CLI Example:
salt '*' zfs.exists myzpool/mydataset salt '*' zfs.exists myzpool/myvolume type=volume
Displays properties for the given datasets.
Note
If no datasets are specified, then the command displays properties for all datasets on the system.
New in version 2016.3.0.
CLI Example:
salt '*' zfs.get salt '*' zfs.get myzpool/mydataset [recursive=True|False] salt '*' zfs.get myzpool/mydataset properties="sharenfs,mountpoint" [recursive=True|False] salt '*' zfs.get myzpool/mydataset myzpool/myotherdataset properties=available fields=value depth=1
Adds a single reference, named with the tag argument, to the specified snapshot or snapshots.
Note
Each snapshot has its own tag namespace, and tags must be unique within that space.
If a hold exists on a snapshot, attempts to destroy that snapshot by using the zfs destroy command return EBUSY.
New in version 2016.3.0.
Changed in version 2018.3.1.
Warning
As of 2018.3.1 the tag parameter no longer accepts a comma-separated value. It's is now possible to create a tag that contains a comma, this was impossible before.
CLI Example:
salt '*' zfs.hold mytag myzpool/mydataset@mysnapshot [recursive=True] salt '*' zfs.hold mytag myzpool/mydataset@mysnapshot myzpool/mydataset@myothersnapshot
Lists all existing user references for the given snapshot or snapshots.
New in version 2016.3.0.
CLI Example:
salt '*' zfs.holds myzpool/mydataset@baseline
Clears the specified property
New in version 2016.3.0.
CLI Example:
salt '*' zfs.inherit canmount myzpool/mydataset [recursive=True|False]
Return a list of all datasets or a specified dataset on the system and the values of their used, available, referenced, and mountpoint properties.
New in version 2015.5.0.
CLI Example:
salt '*' zfs.list salt '*' zfs.list myzpool/mydataset [recursive=True|False] salt '*' zfs.list myzpool/mydataset properties="sharenfs,mountpoint"
List mounted zfs filesystems
New in version 2018.3.1.
CLI Example:
salt '*' zfs.list_mount
Mounts ZFS file systems
New in version 2016.3.0.
Changed in version 2018.3.1.
Warning
Passing '-a' as name is deprecated and will be removed in Sodium.
CLI Example:
salt '*' zfs.mount salt '*' zfs.mount myzpool/mydataset salt '*' zfs.mount myzpool/mydataset options=ro
Promotes a clone file system to no longer be dependent on its "origin" snapshot.
Note
This makes it possible to destroy the file system that the clone was created from. The clone parent-child dependency relationship is reversed, so that the origin file system becomes a clone of the specified file system.
The snapshot that was cloned, and any snapshots previous to this snapshot, are now owned by the promoted clone. The space they use moves from the origin file system to the promoted clone, so enough space must be available to accommodate these snapshots. No new space is consumed by this operation, but the space accounting is adjusted. The promoted clone must not have any conflicting snapshot names of its own. The rename subcommand can be used to rename any conflicting snapshots.
New in version 2016.3.0.
CLI Example:
salt '*' zfs.promote myzpool/myclone
Removes a single reference, named with the tag argument, from the specified snapshot or snapshots.
Note
The tag must already exist for each snapshot. If a hold exists on a snapshot, attempts to destroy that snapshot by using the zfs destroy command return EBUSY.
New in version 2016.3.0.
Changed in version 2018.3.1.
Warning
As of 2018.3.1 the tag parameter no longer accepts a comma-separated value. It's is now possible to create a tag that contains a comma, this was impossible before.
CLI Example:
salt '*' zfs.release mytag myzpool/mydataset@mysnapshot [recursive=True] salt '*' zfs.release mytag myzpool/mydataset@mysnapshot myzpool/mydataset@myothersnapshot
Rename or Relocate a ZFS File System.
New in version 2015.5.0.
CLI Example:
salt '*' zfs.rename myzpool/mydataset myzpool/renameddataset
Roll back the given dataset to a previous snapshot.
Warning
When a dataset is rolled back, all data that has changed since the snapshot is discarded, and the dataset reverts to the state at the time of the snapshot. By default, the command refuses to roll back to a snapshot other than the most recent one.
In order to do so, all intermediate snapshots and bookmarks must be destroyed by specifying the -r option.
New in version 2016.3.0.
CLI Example:
salt '*' zfs.rollback myzpool/mydataset@yesterday
Sets the property or list of properties to the given value(s) for each dataset.
Note
properties are passed as key-value pairs. e.g.
compression=off
Note
Only some properties can be edited.
See the Properties section for more information on what properties can be set and acceptable values.
Numeric values can be specified as exact values, or in a human-readable form with a suffix of B, K, M, G, T, P, E (for bytes, kilobytes, megabytes, gigabytes, terabytes, petabytes, or exabytes respectively).
New in version 2016.3.0.
CLI Example:
salt '*' zfs.set myzpool/mydataset compression=off salt '*' zfs.set myzpool/mydataset myzpool/myotherdataset compression=off salt '*' zfs.set myzpool/mydataset myzpool/myotherdataset compression=lz4 canmount=off
Creates snapshots with the given names.
Note
ZFS properties can be specified at the time of creation of the filesystem by passing an additional argument called "properties" and specifying the properties with their respective values in the form of a python dictionary:
properties="{'property1': 'value1', 'property2': 'value2'}"
New in version 2016.3.0.
CLI Example:
salt '*' zfs.snapshot myzpool/mydataset@yesterday [recursive=True] salt '*' zfs.snapshot myzpool/mydataset@yesterday myzpool/myotherdataset@yesterday [recursive=True]
Unmounts ZFS file systems
Warning
Using -a
for the name parameter will probably break your system, unless your rootfs is not on zfs.
New in version 2016.3.0.
Changed in version 2018.3.1.
Warning
Passing '-a' as name is deprecated and will be removed in Sodium.
CLI Example:
salt '*' zfs.unmount myzpool/mydataset [force=True|False]
© 2019 SaltStack.
Licensed under the Apache License, Version 2.0.
https://docs.saltstack.com/en/latest/ref/modules/all/salt.modules.zfs.html