Compare commits
2 Commits
462d529a58
...
b4e977da3e
Author | SHA1 | Date |
---|---|---|
Ray Elliott | b4e977da3e | |
Ray Elliott | d947f564e9 |
|
@ -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
|
||||
|
||||
|
|
|
@ -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"
|
||||
|
||||
|
|
@ -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
|
||||
|
||||
|
|
|
@ -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"
|
||||
|
||||
|
|
Loading…
Reference in New Issue