From fa410ab2e8bd5390a8b4eef7c702d2e32e37c985 Mon Sep 17 00:00:00 2001 From: Andreas Fischer Date: Wed, 10 Dec 2014 00:47:45 +0100 Subject: [PATCH] Setup SSH key and agent for travis user. --- .travis.yml | 1 + travis/setup-secure-shell.sh | 14 ++++++++++++++ 2 files changed, 15 insertions(+) diff --git a/.travis.yml b/.travis.yml index f5c96a8f..03485d1b 100644 --- a/.travis.yml +++ b/.travis.yml @@ -20,6 +20,7 @@ env: before_install: true install: + - eval `ssh-agent -s` - travis/setup-secure-shell.sh - sh -c "if [ '$TRAVIS_PHP_VERSION' != 'hhvm' ]; then travis/install-php-extensions.sh; fi" - sh -c "if [ '$TRAVIS_PHP_VERSION' != '5.2' ]; then travis/setup-composer.sh; fi" diff --git a/travis/setup-secure-shell.sh b/travis/setup-secure-shell.sh index 8dd4e35f..fdcaaa0d 100755 --- a/travis/setup-secure-shell.sh +++ b/travis/setup-secure-shell.sh @@ -13,5 +13,19 @@ set -x USERNAME='phpseclib' PASSWORD='EePoov8po1aethu2kied1ne0' +# Create phpseclib user and home directory sudo useradd --create-home --base-dir /home "$USERNAME" + +# Set phpseclib user password echo "$USERNAME:$PASSWORD" | sudo chpasswd + +# Create a 1024 bit RSA SSH key pair without passphrase for the travis user +ssh-keygen -t rsa -b 1024 -f "$HOME/.ssh/id_rsa" -q -N "" + +# Add the generated private key to SSH agent of travis user +ssh-add "$HOME/.ssh/id_rsa" + +# Allow the private key of the travis user to log in as phpseclib user +sudo mkdir -p "/home/$USERNAME/.ssh/" +sudo cp "$HOME/.ssh/id_rsa.pub" "/home/$USERNAME/.ssh/authorized_keys" +sudo chown "$USERNAME:$USERNAME" "/home/$USERNAME/.ssh/" -R