reworked mk_archive.sh, few ajustment
This commit is contained in:
@@ -1,15 +1,43 @@
|
||||
#!/bin/bash
|
||||
# That script is used to create an archive for init deployment
|
||||
# ------------------------------------------------------------------------------
|
||||
# That script is used to create an archive for init.sh deployment
|
||||
# This file is part of the init.sh project
|
||||
# Copyright (c) 2019-2021 Geoffray Levasseur <fatalerrors@geoffray-levasseur.org>
|
||||
# ------------------------------------------------------------------------------
|
||||
# This file is distributed under 3-clause BSD license.
|
||||
# The complete license agreement can be obtained at:
|
||||
# https://opensource.org/licenses/BSD-3-Clause
|
||||
# ------------------------------------------------------------------------------
|
||||
|
||||
VERSION=$(grep "VERSION=" init.sh | cut -d'=' -f 2 | sed s/\"//g)
|
||||
TMPDIR="/tmp/init-$VERSION"
|
||||
CWD=$(pwd)
|
||||
|
||||
mkdir $TMPDIR
|
||||
mkdir -pv $TMPDIR
|
||||
|
||||
cp -av conf lib modules repo doc init.sh README.* LICENSE $TMPDIR
|
||||
echo
|
||||
echo "***"
|
||||
echo "*** Copying files..."
|
||||
echo "***"
|
||||
cp -av conf doc init.sh lib LICENSE modules README.* repo $TMPDIR
|
||||
|
||||
tar --gzip -cvf ~/init.sh-$VERSION.tar.gz $TMPDIR
|
||||
cd $(dirname $TMPDIR)
|
||||
echo
|
||||
echo "***"
|
||||
echo "*** Creating archive..."
|
||||
echo "***"
|
||||
tar --gzip -cvf $CWD/init.sh-$VERSION.tar.gz $(basename $TMPDIR)
|
||||
|
||||
cd $CWD
|
||||
echo
|
||||
echo "***"
|
||||
echo "*** Removing temporary files..."
|
||||
echo "***"
|
||||
rm -rfv $TMPDIR
|
||||
|
||||
echo "L'archive ~/init.sh-$VERSION.tar.gz a été créé avec succès dans votre home directory."
|
||||
echo
|
||||
echo "***"
|
||||
echo "*** Done."
|
||||
echo "***"
|
||||
echo
|
||||
echo "Archive init.sh-$VERSION.tar.gz was created succesfully in working directory."
|
||||
|
||||
Reference in New Issue
Block a user