Skip to content

Commit

Permalink
Add note about user permissions modification
Browse files Browse the repository at this point in the history
  • Loading branch information
aktech committed Apr 2, 2024
1 parent a80f073 commit 4e7a1e6
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion roles/jupyterhub/templates/jupyterhub_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,9 @@ class QHubHPCSpawner(QHubHPCSpawnerBase):
ln -s /shared "$HOME/share"
fi
# Ensure home directory is private
echo "Ensure home directory $HOME is private"
# This will remove read, write, execute permissions from the group and other users.
# It will not change permissions for the user that owns the file.
chmod go-rwx $HOME
# ensure ipyparallel configuration profiles
Expand Down

0 comments on commit 4e7a1e6

Please sign in to comment.