Dear Community!
Can anybody see what I'm doing wrong?
I have migrated some zfs filesystems, that I know need to reorganize. Therefore I created new parent-filesystems and renamed the old subfilesystems into that.
That worked for several filesystems (tank/old/accounts > tank/users, tank/old/pkgs > tank/packages, ...) - until the one that makes troubles now:
When I try to inherit the mountpoint for tank/services/fs1 it always sets the mountpoint to the old value (/tank/hosts/fs1).
Can anybody see what I'm doing wrong?
I have migrated some zfs filesystems, that I know need to reorganize. Therefore I created new parent-filesystems and renamed the old subfilesystems into that.
That worked for several filesystems (tank/old/accounts > tank/users, tank/old/pkgs > tank/packages, ...) - until the one that makes troubles now:
Code:
$ sudo zfs create tank/services
$ sudo zfs set canmount=off
$ sudo zfs rename tank/old/hosts/fs1 tank/services/fs1
$ sudo zfs inherit mountpoint tank/services/fs1
$ zfs list -r tank/old/hosts tank/services
NAME MOUNTPOINT
tank/old/hosts /tank/hosts
tank/services /tank/services
tank/services/fs1 /tank/hosts/fs1
When I try to inherit the mountpoint for tank/services/fs1 it always sets the mountpoint to the old value (/tank/hosts/fs1).