Wondering the best way to implement basic read-write and read-only permissions for a share.
First I tried using the built in modify_set and read_set but it the read_set lacks the x bit needed to navigate directories (or at least this is my understanding with some testing).
I noticed that the octal equivalent for 7 is rwxp--aARWcCos and equivalent for 5 is r-x---a-R-c--s; should I use these permission sets as my read/write?
I am also a bit confused as the rwxp--aARWcCos octal 7 equivalent set omits delete and delete_child -- I am apparently still able to delete without these set. Can somebody explain what's going on here?
Thanks!
First I tried using the built in modify_set and read_set but it the read_set lacks the x bit needed to navigate directories (or at least this is my understanding with some testing).
I noticed that the octal equivalent for 7 is rwxp--aARWcCos and equivalent for 5 is r-x---a-R-c--s; should I use these permission sets as my read/write?
I am also a bit confused as the rwxp--aARWcCos octal 7 equivalent set omits delete and delete_child -- I am apparently still able to delete without these set. Can somebody explain what's going on here?
Thanks!