Don't look for domain if this is not a web app

This commit is contained in:
Bob Mottram 2018-04-08 17:35:21 +01:00
parent 85cbecbc45
commit 49a4b445f7
1 changed files with 12 additions and 10 deletions

View File

@ -438,10 +438,10 @@ fi
echo '}' echo '}'
echo '' echo ''
echo "function restore_local_${app_name} {" echo "function restore_local_${app_name} {"
echo " if ! grep -q \"${app_name} domain\" \"\$COMPLETION_FILE\"; then"
echo ' return'
echo ' fi'
if [ $app_webui ]; then if [ $app_webui ]; then
echo " if ! grep -q \"${app_name} domain\" \"\$COMPLETION_FILE\"; then"
echo ' return'
echo ' fi'
echo " ${app_name_upper}_DOMAIN_NAME=\$(get_completion_param \"${app_name} domain\")" echo " ${app_name_upper}_DOMAIN_NAME=\$(get_completion_param \"${app_name} domain\")"
echo " if [ ! \"\$${app_name_upper}_DOMAIN_NAME\" ]; then" echo " if [ ! \"\$${app_name_upper}_DOMAIN_NAME\" ]; then"
echo " return" echo " return"
@ -526,13 +526,15 @@ fi
echo '}' echo '}'
echo '' echo ''
echo "function restore_remote_${app_name} {" echo "function restore_remote_${app_name} {"
echo " if ! grep -q \"${app_name} domain\" \"\$COMPLETION_FILE\"; then" if [ $app_webui ]; then
echo ' return' echo " if ! grep -q \"${app_name} domain\" \"\$COMPLETION_FILE\"; then"
echo ' fi' echo ' return'
echo " ${app_name_upper}_DOMAIN_NAME=\$(get_completion_param \"${app_name} domain\")" echo ' fi'
echo " if [ ! \"\$${app_name_upper}_DOMAIN_NAME\" ]; then" echo " ${app_name_upper}_DOMAIN_NAME=\$(get_completion_param \"${app_name} domain\")"
echo " return" echo " if [ ! \"\$${app_name_upper}_DOMAIN_NAME\" ]; then"
echo " fi" echo " return"
echo " fi"
fi
echo " temp_restore_dir=/root/temp${app_name}" echo " temp_restore_dir=/root/temp${app_name}"
if [ ! "$app_dir" ]; then if [ ! "$app_dir" ]; then
echo " ${app_name}_dir=/var/www/\${${app_name_upper}_DOMAIN_NAME}/htdocs" echo " ${app_name}_dir=/var/www/\${${app_name_upper}_DOMAIN_NAME}/htdocs"