HPUX setacl leaves uid behind
- by Woot4Moo
I have a shell script that I execute after uninstalling a web application. The script is meant to clean up permissions that were needed during the execution of the application.
find /opt/path -exec setacl -d user:myUser{} ';'
After this executes and the acl is removed I am left with an acl that looks as follows
user:101:--- /opt/path
How can I properly call setacl to remove the user without leaving behind a uid?