Skip to content

Commit c112b21

Browse files
committed
Fix permissions issue with config scripts
1 parent 40f955e commit c112b21

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

config-gerrit-mac.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ FULLNAME="`git config user.name`"
88
# Fixes issues with repo url getting wrong username, since it uses local part of
99
# email for SSH username
1010
git config --global review.http://gerrit:8080/.username $USER
11-
11+
chmod 400 jenkins/demo_key_rsa
1212
cat ~/.ssh/id_rsa.pub | ssh -i jenkins/demo_key_rsa -p 29418 demouser@gerrit \
1313
gerrit create-account --group Workers --group \"Non-Interactive Users\" --full-name \"$FULLNAME\" --email \"$EMAIL\" --http-password \"$HTTP_PASS\" --ssh-key - $USERNAME

config-gerrit.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ FULLNAME="`git config user.name`"
88
# Fixes issues with repo url getting wrong username, since it uses local part of
99
# email for SSH username
1010
git config --global review.http://localhost:8080/.username $USER
11-
11+
chmod 400 jenkins/demo_key_rsa
1212
cat ~/.ssh/id_rsa.pub | ssh -i jenkins/demo_key_rsa -p 29418 demouser@localhost \
1313
gerrit create-account --group Workers --group \"Non-Interactive Users\" --full-name \"$FULLNAME\" --email \"$EMAIL\" --http-password \"$HTTP_PASS\" --ssh-key - $USERNAME

0 commit comments

Comments
 (0)