Files
files-for-dockers/base-build/debian-stretch_pt3.sh
2020-06-28 11:44:04 -07:00

31 lines
825 B
Bash

#!/bin/bash
# Copyright (c) 2018 fithwum
# All rights reserved
echo " "
echo "INFO ! Cleaning up pt2 of script from base image."
rm -frv /debian-stretch/debian-stretch_pt2.sh
sleep 1
echo " "
echo "INFO ! Base image size after cleanup."
du --human-readable --summarize debian-stretch
sleep 10
echo " "
echo "INFO ! Creating base image archive."
echo "INFO ! This may take some time."
tar -cjf debian-stretch.tar.bz2 --directory debian-stretch .
sleep 1
echo " "
echo "INFO ! Base image archive."
du --human-readable --summarize debian-stretch.tar.bz2
sleep 10
echo " "
echo "INFO ! Uploading image to ftp server."
ftp-upload -v -h {IP}:{PORT} -u {USER} --password {PASSWORD} -d /mnt/user/FTP debian-stretch.tar.bz2
sleep 1
echo " "
echo "INFO ! Removing temp files."
rm -fr debian-stretch
rm -fr debian-stretch.tar.bz2
exit