mirror of
https://github.com/linuxserver/docker-code-server.git
synced 2024-11-22 20:15:41 +01:00
changes perms in .ssh to file type
This commit is contained in:
parent
894f3b2c0c
commit
7579ec248a
@ -31,5 +31,7 @@ find /config -path /config/workspace -prune -o -exec chown abc:abc {} +
|
|||||||
chown abc:abc /config/workspace
|
chown abc:abc /config/workspace
|
||||||
chmod 700 /config/.ssh
|
chmod 700 /config/.ssh
|
||||||
if [[ -n "$(ls -A /config/.ssh)" ]]; then
|
if [[ -n "$(ls -A /config/.ssh)" ]]; then
|
||||||
chmod 600 /config/.ssh/*
|
find /config/.ssh/ -type d -exec chmod 700 '{}' \;
|
||||||
|
find /config/.ssh/ -type f -exec chmod 600 '{}' \;
|
||||||
|
find /config/.ssh/ -type f -iname '*.pub' -exec chmod 644 '{}' \;
|
||||||
fi
|
fi
|
||||||
|
Loading…
Reference in New Issue
Block a user