File: zfs_dataset.md

package info (click to toggle)
bundlewrap 4.24.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 3,216 kB
  • sloc: python: 20,299; makefile: 2
file content (39 lines) | stat: -rw-r--r-- 908 bytes parent folder | download | duplicates (3)
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.