1754216 Members
3388 Online
108812 Solutions
New Discussion юеВ

delete entry of acl

 
SOLVED
Go to solution
Dario Karlen
Frequent Advisor

delete entry of acl

i manipulated a little bit to much on a directory. now i have these securities set:
KARLEND > dir /secu [wal]xfer.dir

Directory DSA2:[WAL]

XFER.DIR;1 218 19-FEB-2001 14:14:13.07 [SYSTEM]
(RWE,RWE,RE,E)
(DEFAULT_PROTECTION,SYSTEM:RWE,OWNER:RWE,GROUP:RE,WORLD:RWE)
(IDENTIFIER=[FTP],OPTIONS=DEFAULT,ACCESS=READ+WRITE+EXECUTE)
(IDENTIFIER=[FTP],ACCESS=READ+WRITE+EXECUTE)

Total of 1 file, 218 blocks.
how can i delete them now? i don't need them anymore, i solved the problem with the SET PROTECTION
2 REPLIES 2
Robert_Boyd
Respected Contributor
Solution

Re: delete entry of acl

This will depend on the version of VMS you're running.

You can use the command

SET ACL/EDIT XFER.DIR

and then in the editor delete the lines.

You could alternatively try

SET security/acl/delete=all XFER.DIR
or on earlier versions of VMS

SET ACL/DELETE=ALL XFER.DIR

Robert
Master you were right about 1 thing -- the negotiations were SHORT!
Dario Karlen
Frequent Advisor

Re: delete entry of acl

it worked with the editor, nice solution.
thanks Robert