From 57649ca6511835148069d185c98c162f30674f93 Mon Sep 17 00:00:00 2001 From: Justin Karimi Date: Tue, 26 Jan 2021 23:10:37 -0500 Subject: [PATCH] Add Audio/Images Move to update_webpanel.sh Add functionality to align audio/images in the update_webpanel.sh script. --- update_webpanel.sh | 32 ++++++++++++++++++++++++++++++-- 1 file changed, 30 insertions(+), 2 deletions(-) diff --git a/update_webpanel.sh b/update_webpanel.sh index fa7e18e..b5d27bb 100755 --- a/update_webpanel.sh +++ b/update_webpanel.sh @@ -73,7 +73,36 @@ sudo cp -rp $NOAA_HOME/templates/webpanel/* $WEB_DIR/ log "4/$STEPS: Done copying new PHP files" "INFO" log "5/$STEPS: Moving audio, images, and meteor directories (if required/detected)..." "INFO" -echo "FILLMEIN" +new_path=/var/www/wx/public/ +old_audio_path=/var/www/wx/audio +old_images_path=/var/www/wx/images +old_meteor_path=/var/www/meteor +if [ -d $old_audio_path ]; then + if [ -d $new_path/audio ]; then + log "Found new audio directory already exists - not moving old audio directory to avoid conflict (please handle yourself)" "ERROR" + else + log "Found old audio path, moving the directory to $new_path/audio" "INFO" + mv $old_audio_path $new_path/audio + fi +fi + +if [ -d $old_images_path ]; then + if [ -d $new_path/images ]; then + log "Found new images directory already exists - not moving old images directory to avoid conflict (please handle yourself)" "ERROR" + else + log "Found old images path, moving the directory to $new_path/images" "INFO" + mv $old_images_path $new_path/images + fi +fi + +if [ -d $old_meteor_path ]; then + if [ -d $new_path/meteor ]; then + log "Found new meteor directory already exists - not moving old meteor directory to avoid conflict (please handle yourself)" "ERROR" + else + log "Found old meteor path, moving the directory to $new_path/meteor" "INFO" + mv $old_meteor_path $new_path/meteor + fi +fi log "5/$STEPS: Done moving audio, images, and meteor directories" "INFO" log "6/$STEPS: Running composer to install dependencies..." "INFO" @@ -82,7 +111,6 @@ log "6/$STEPS: Done running composer install" "INFO" log "7/$STEPS: Aligning permissions..." "INFO" chown -R pi:pi /var/www/wx/ -echo "FILLMEIN" log "8/$STEPS: Done aligning permissions" "INFO" log "8/$STEPS: Updating nginx configuration (if required)..." "INFO"