Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

This is a two-step procedure. Say we want to create a shared_folder directory on $WORK of a project <MYPRJ>

  1. First set the gid sticky bit make your shared folder writable to the $WORK group and set the group ID (setgid) to your shared foderfolder and

    Code Block
    languagebash
    $ chprj -d <MYPRJ>
    $ cd $WORK
    $ mkdir shared_folder
    $ chmod 770 shared_folder
    $ chmod g+s shared_folder
  2. Then, set the proper acl

    Code Block
    languagebash
    $ setfacl -d -m g::rwx shared_folder/

...