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
While not explicitly documented, it is possible (and supported by core ZFS and utilities) to create ZFS datasets with spaces in them (see openzfs/zfs#1027 for a small discussion). zfs-periodic fails to support such datasets due to use of simplistic shell variable splitting using the default IFS which splits on spaces. Example from the code:
datasets=$(zfs list -r -H -o name $pool)# ...fordatasetin$datasets;do
I've noticed this only after 4 years of using zfs-periodic that one of my ZFS filesystems wasn't snapshotting properly. 😅
Please consider supporting such datasets.
The text was updated successfully, but these errors were encountered:
While not explicitly documented, it is possible (and supported by core ZFS and utilities) to create ZFS datasets with spaces in them (see openzfs/zfs#1027 for a small discussion). zfs-periodic fails to support such datasets due to use of simplistic shell variable splitting using the default
IFS
which splits on spaces. Example from the code:I've noticed this only after 4 years of using zfs-periodic that one of my ZFS filesystems wasn't snapshotting properly. 😅
Please consider supporting such datasets.
The text was updated successfully, but these errors were encountered: