32 lines
666 B
Bash
32 lines
666 B
Bash
#!/bin/sh
|
|
|
|
FTP_SERVER=$FTP_SERVER
|
|
FTP_USER=$FTP_USER
|
|
FTP_PATH=$FTP_PATH
|
|
#NFS_SERVER=$NFS_SERVER
|
|
#NFS_PATH=$NFS_PATH
|
|
|
|
# mount -t nfs $NFS_SERVER:$NFS_PATH /mnt/nfs
|
|
|
|
echo "Start copying via FTP $FTP_PATH"
|
|
sftp -i /root/.ssh/id_rsa -o StrictHostKeyChecking=no $FTP_USER@$FTP_SERVER:$FTP_PATH /mnt/beacon_data
|
|
cd /mnt/beacon_data
|
|
|
|
echo "Unpacking the data"
|
|
tar -I zstd -xvf *.tar.zst
|
|
|
|
if [ $? -eq 0 ]; then
|
|
echo "Deleting the tar.zst"
|
|
rm *.tar.zst
|
|
else
|
|
echo "Tar command failed. Not deleting the tar.zst file."
|
|
fi
|
|
|
|
|
|
if [ -n "$DEBUG" ]; then
|
|
echo "In debug mode, you need to kill manually the container"
|
|
tail -f /dev/null
|
|
fi
|
|
|
|
# umount /mnt/beacon_data
|