wordpress-dev/webserver-provision.sh

15 lines
335 B
Bash
Executable File

#!/bin/sh
if [ -z "$1" ] ; then
echo "Error - must supply config file"
exit 1
fi
. "$1"
_ssh_url="root@$_remote_host.$_domain"
# ssh "$_remote_host.$_domain" '/bin/bash -s' < ./production/webserver-setup.sh
cat config ./production/webserver-setup.sh | ssh "$_ssh_url" "cat >/tmp/setup.sh"
ssh $_ssh_url '/bin/bash /tmp/setup.sh'