16 lines
349 B
Bash
Executable File
16 lines
349 B
Bash
Executable File
#!/bin/sh
|
|
|
|
if [ -z "$1" ] ; then
|
|
echo "Error - must supply config file"
|
|
exit 1
|
|
fi
|
|
|
|
. "$1"
|
|
|
|
./dev/container-create.sh
|
|
|
|
_url="$_local_hostname.$_local_domain"
|
|
cat config dev/dev-env-setup.sh | ssh root@"$_url" 'cat >/tmp/deploy-script.sh'
|
|
ssh root@"$_url" '/bin/bash /tmp/deploy-script.sh'
|
|
ssh root@"$_url" '/bin/bash -c "rm /tmp/deploy-script.sh"'
|