delete erroneous recreated file

This commit is contained in:
Ray Elliott 2020-03-08 17:52:59 +00:00
parent 769d0e0a8a
commit 24abee0d63
1 changed files with 0 additions and 20 deletions

View File

@ -1,20 +0,0 @@
#!/bin/sh
if [ -z "$1" ] ; then
echo "Must supply container name as argument"
exit 1
fi
. ./config
_host="$1.home"
_cmd_wp_export="wp db export --dbuser=wordpress --dbpass=$_wp_db_passwd --add-drop-table data.sql"
_ssh_cmd="sshpass -p$_passwd_www ssh $_user_www@$_host"
_scp_cmd="sshpass -p$_passwd_www scp $_user_www@$_host:/tmp/wordpress.tar.gz"
$_ssh_cmd "cd /var/www/html/wordpress &&" $cmd_wp_export
$_ssh_cmd 'cd /var/www/html/wordpress && tar czf /tmp/wordpress.tar.gz .'
$_ssh_cmd "rm /var/www/html/wordpress/data.sql"
$_scp_cmd "."
$_ssh_cmd 'rm /tmp/wordpress.tar.gz'