0

I added a ZFS property which was not included by default. Instead of setting it back to true (default value), is there a way to "remove" the attribute I created?

root@library:~# zfs get all | grep false
library/secure   com.sun:auto-snapshot       true    local
ensnare
  • 2,212
  • 7
  • 24
  • 40

1 Answers1

0
root@library:~# zfs get all | grep "com.sun:auto-snapshot "
library/secure      com.sun:auto-snapshot       false    local com.sun:auto-snapshot       false                            local

root@library:~# zfs inherit com.sun:auto-snapshot library/secure
root@library:~# zfs get all | grep "com.sun:auto-snapshot "
root@library:~#
ensnare
  • 2,212
  • 7
  • 24
  • 40