Make script enter passphrase

v3.6.11
Dmitry Porunov 5 years ago
parent faf6a27366
commit 4ad5ddec00

@ -68,8 +68,6 @@ package-aur:
# Set up SSH for publishing
- mkdir -p /root/.ssh
- echo "$AUR_SSH_PRIVATE"
- sleep 5
- cp ./aur.pub /root/.ssh/id_rsa.pub
- echo "$AUR_SSH_PRIVATE" | base64 -d > /root/.ssh/id_rsa
- echo "Host aur.archlinux.org" >> /root/.ssh/config
@ -77,7 +75,8 @@ package-aur:
- echo " User aur" >> /root/.ssh/config
- chmod 600 /root/.ssh/{id_rsa*,config}
- eval `ssh-agent -s`
- ssh-add /root/.ssh/id_rsa
# - ssh-add /root/.ssh/id_rsa
- echo -en "${PASSPHRASE}" | ssh-add /root/.ssh/id_rsa
- ssh-keyscan -H aur.archlinux.org >> /root/.ssh/known_hosts
- git config --global user.name "Dmitry Porunov"
- git config --global user.email "dmitry@auteiy.me"

Loading…
Cancel
Save