Skip to content

Commit 5877e1e

Browse files
committed
Removed useless ownership options for authorized_keys
1 parent 6028b0e commit 5877e1e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

build/startup.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@ if [ -z "$(find /ssh-client-keys -mindepth 1 -maxdepth 1 -type f -name \*.pub)"
3232
fi
3333

3434
# shellcheck disable=SC3001
35-
install -oportmap -gportmap -m600 \
36-
<(cat /ssh-client-keys/*.pub 2>/dev/null || :) ~/.ssh/authorized_keys
35+
install -m600 <(cat /ssh-client-keys/*.pub 2>/dev/null || :) \
36+
~/.ssh/authorized_keys
3737

3838
################################################################################
3939

0 commit comments

Comments
 (0)