-
Notifications
You must be signed in to change notification settings - Fork 144
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added permission check in repos folder
- Loading branch information
Showing
1 changed file
with
10 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,23 @@ | ||
#!/bin/sh | ||
|
||
cd /home/git | ||
|
||
# If there is some public key in keys folder | ||
# then it copies its contain in authorized_keys file | ||
if [ "$(ls -A /git-server/keys/)" ]; then | ||
cd /home/git | ||
cat /git-server/keys/*.pub > .ssh/authorized_keys | ||
chown -R git:git .ssh | ||
chmod 700 .ssh | ||
chmod -R 600 .ssh/* | ||
fi | ||
|
||
# Checking permissions and fixing SGID bit in repos folder | ||
# More info: https://github.com/jkarlosb/git-server-docker/issues/1 | ||
if [ "$(ls -A /git-server/repos/)" ]; then | ||
cd /git-server/repos | ||
chown -R git:git . | ||
chmod -R ug+rwX . | ||
find . -type d -exec chmod g+s '{}' + | ||
fi | ||
|
||
# -D flag avoids executing sshd as a daemon | ||
/usr/sbin/sshd -D |
371e509
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Related to #1