SOLVED How can I remove ACLs from my Unix share?

Han Sooloo

Dabbler
Joined
Dec 23, 2015
Messages
16
I have a dataset (/mnt/tank/Movies) that I had setup long time ago (release 9.x times). I had also shared it via NFS.

All of a sudden, the share directory now looks like the following (I think this means there are ACLs set on it, with the "+" at the end of the mode bits):
Code:
root@zfs[/mnt/tank]# ls -lad Movies
drwxrwxr-x+ 619 media  media  623 Apr  5 22:43 Movies

Code:
root@zfs[/mnt/tank]# getfacl Movies
# file: Movies
# owner: media
# group: media
            owner@:rwxpDdaARWcCos:fdi----:allow
            group@:rwxpDdaARWcCos:fdi----:allow
         everyone@:r-x---a-R-c---:fdi----:allow
            owner@:rwxp--aARWcCos:-------:allow
            group@:rwxp--a-R-c--s:-------:allow
         everyone@:r-x---a-R-c--s:-------:allow


Question:
How can I get rid of the ACLs (recursively)? I don't recall setting them on the share, and I don't need them.
 
Top