Files
files-for-dockers/base-build/debian-stretch_pt3.sh
2019-01-06 11:55:28 -08:00

29 lines
694 B
Bash

#!/bin/bash
# Copyright (c) 2018 fithwum
# All rights reserved
RELEASE=
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
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."
ftp-upload -v -h {IP}:{PORT} -u {USER} --password {PASSWORD} -d /files debian-stretch.tar
sleep 1
echo " "
echo "INFO ! Removing temp files"
rm -fr debian-stretch
exit