1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39
|
# ZFS datasets
Manages ZFS datasets.
zfs_datasets = {
"tank/mydataset": {
"acltype": "posixacl",
"atime": "on",
"relatime": "on",
"compression": "on",
"dedup": "off",
"mountpoint": "/mnt/mydataset",
"readonly": "off",
"quota": "1G",
"recordsize": "131072",
"logbias": "throughput",
},
}
<br><br>
# Attribute reference
See also: [The list of generic builtin item attributes](../repo/items.py.md#builtin-item-attributes)
<hr>
## mountpoint
Controls where the dataset should be mounted. If you set this to `None`,
bundlewrap will also automatically unmount the dataset for you. The dataset
will get mounted if you specify a mountpoint.
<hr>
## Any other attribute
Sets the corresponding dataset properties. Make sure the property is available
in our pool.
|