This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# masonmark 2023-11-25 | |
# | |
# This is my modified reproducer.sh for https://github.com/openzfs/zfs/issues/15526 | |
# Original: https://gist.github.com/tonyhutter/d69f305508ae3b7ff6e9263b22031a84#file-reproducer-sh | |
# | |
# This is my modified reproducer script, which just fixes the typo in | |
# the example command and comments out the initial if block. I did | |
# not need zfs_bclone_enabled to be set (the orginial script got a |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export ZFS_FILESYSTEM=fixme_whatever | |
export ZFS_USER=fixme_whoever | |
sudo zfs allow -s @allperm allow,clone,create,destroy,mount,promote,receive,rename,rollback,send,share,snapshot $ZFS_FILESYSTEM | |
sudo zfs allow $ZFS_USER @allperm $ZFS_FILESYSTEM |
OlderNewer