Compare commits

...

2 Commits

4 changed files with 28 additions and 3 deletions

View File

@ -1,6 +1,11 @@
#!/bin/sh
. ./config
if [ -z "$1" ] ; then
echo "Error - must supply config file"
exit 1
fi
. "$1"
./dev/container-create.sh

10
create-config.sh Executable file
View File

@ -0,0 +1,10 @@
#!/bin/sh
if [ -z "$1" ] ; then
echo "Error - must supply filename"
exit 1
fi
cp /home/ray/Projects/wordpress-dev/config-example "$1"

View File

@ -1,6 +1,11 @@
#!/bin/sh
. ./config
if [ -z "$1" ] ; then
echo "Error - must supply config file"
exit 1
fi
. "$1"
./dev/export-data.sh

View File

@ -1,6 +1,11 @@
#!/bin/sh
. ./config
if [ -z "$1" ] ; then
echo "Error - must supply config file"
exit 1
fi
. "$1"
_ssh_url="root@$_remote_host.$_domain"