diff options
author | Mohammad Akhlaghi <mohammad@akhlaghi.org> | 2019-03-11 21:09:04 +0000 |
---|---|---|
committer | Mohammad Akhlaghi <mohammad@akhlaghi.org> | 2019-03-11 21:09:04 +0000 |
commit | 7ea5e28b74535797277c2f796dcaddf7425a7d61 (patch) | |
tree | ff7c3c3b2e93e363fbeb63a82fdb19a19dedbbcc /for-group | |
parent | 37b4551dc7cb394a76be1534a3c4de90bdb569c3 (diff) |
for-group gives write permission to all built software in the end
Since the `install' script also sets permissions manually, the permissions
that we define in `for-group' don't usually affect the installed
files. Therefore the installed files of one user can't be modified/deleted
by another. With this commit, after for-group finishes configuration, it
also adds the write flag for all group members in the whole installation
directory.
Diffstat (limited to 'for-group')
-rwxr-xr-x | for-group | 16 |
1 files changed, 16 insertions, 0 deletions
@@ -92,3 +92,19 @@ fi # typo (not using this script properly after configuration). export reproducible_paper_group_name="$1" sg "$1" "umask u+r,u+w,g+r,g+w,o-r,o-w,o-x && $script" + + + + + +# Group writing permissions for dependencies directory +# +# The common build process sets the writing permissions of the installed +# programs/libraries to `755'. So group members can't write over a +# file. This creates problems when another group member wants to update the +# software for example. We thus need to manually add the group writing flag +# to all installed software files. +if [ "x$2" = xconfigure ]; then + echo "Enabling group writing permission on all installed software..." + chmod -R g+w .local/; +fi |