You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
By default, the script will snapshot all pools automatically, unless they have the `com.sun:auto-snapshot` property set to `false`.
45
+
46
+
To check whether a pool has this property set, run the following command (where `archive` is the pool name):
47
+
```
48
+
sudo zfs get com.sun:auto-snapshot archive
49
+
```
50
+
51
+
If you see an output like the following, then snapshots are enabled on this pool:
52
+
```
53
+
NAME PROPERTY VALUE SOURCE
54
+
archive com.sun:auto-snapshot - -
55
+
```
56
+
57
+
To disable snapshots on this pool, issue the following command:
58
+
```
59
+
sudo zfs set com.sun:auto-snapshot=false archive
60
+
```
61
+
62
+
We can check with `zfs get` again, and this time our output should look like the following. If we see this, we know that snapshots have been disabled on this pool:
0 commit comments