Browse Source

migration: check if there is enough free space

tags/1.5
Nico Rey 3 years ago
parent
commit
e824bcceb5
1 changed files with 14 additions and 0 deletions
  1. +14
    -0
      migrate_data.sh

+ 14
- 0
migrate_data.sh View File

@@ -5,9 +5,23 @@
. "$HOME/.tweepy.conf"
. "$NOAA_HOME/common.sh"


# Free disk space
FREE_DISK="$(df | grep "/dev/root" | awk {'print $3'})"

# This is the original path where images were stored
BASEPATH="/var/www/wx/image"

# Size of the old images folder
IMAGEPATH_SIZE="$(du -s $BASEPATH | awk {'print $1'})"

SPACE_NEEDED="$((IMAGEPATH_SIZE * 2))"

if [ "$SPACE_NEEDED" -gt "$FREE_DISK" ]; then
echo "You need more free space"
exit 1
fi

# This is the destination path (AKA the new path)
FINALPATH="/var/www/wx/images"



Loading…
Cancel
Save