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
Might be a little premature, but was expecting the new recursive subvolume delete to report all the subvolumes deleted rather than just the upper level subvolume.
So with:
# btrfs sub create butts && btrfs sub create butts/butts && btrfs sub create butts/butts/butts
Create subvolume './butts'
Create subvolume 'butts/butts'
Create subvolume 'butts/butts/butts'
Might be a little premature, but was expecting the new recursive subvolume delete to report all the subvolumes deleted rather than just the upper level subvolume.
So with:
# btrfs sub create butts && btrfs sub create butts/butts && btrfs sub create butts/butts/butts
Create subvolume './butts'
Create subvolume 'butts/butts'
Create subvolume 'butts/butts/butts'
Would expect something like:
# btrfs --dry-run sub del -R butts
Delete subvolume 5896 (no-commit): '/root/btrfs-progs/butts/butts/butts'
Delete subvolume 5895 (no-commit): '/root/btrfs-progs/butts/butts'
Delete subvolume 5894 (no-commit): '/root/btrfs-progs/butts'
But you get:
# btrfs --dry-run sub del -R butts
Delete subvolume 5894 (no-commit): '/root/btrfs-progs/butts'
The text was updated successfully, but these errors were encountered: