Skip to content

Commit

Permalink
quote
Browse files Browse the repository at this point in the history
  • Loading branch information
KasperSkytte committed Dec 5, 2023
1 parent 4746ad3 commit f49a346
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/storage.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,13 +27,13 @@ If you need to enable other users to access a file/folder you need to set the gr
folder="some_folder/"
# create the folder if it doesn't exist already
mkdir -p $folder
mkdir -p "$folder"
# set group ownership
chown -R :[email protected] "$folder"
# If there are already files with weak permissions, correct them with:
chmod -R o-x $folder
chmod -R o-x "$folder"
# set the setGID sticky bit to ensure new files and folders inherit group ownership
chmod 2775 "$folder"
Expand Down

0 comments on commit f49a346

Please sign in to comment.