HPUX setacl leaves uid behind
Posted
by
Woot4Moo
on Stack Overflow
See other posts from Stack Overflow
or by Woot4Moo
Published on 2011-01-14T14:49:58Z
Indexed on
2011/01/14
14:53 UTC
Read the original article
Hit count: 308
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?
© Stack Overflow or respective owner