72 lines
2.0 KiB
Bash
Executable File
72 lines
2.0 KiB
Bash
Executable File
#!/bin/bash
|
|
if [ -z "${SNSTERGUARD}" ] ; then
|
|
exit 1
|
|
fi
|
|
|
|
DIR=$(cd "$(dirname $0)"; pwd)
|
|
cd "${DIR}"
|
|
set -e
|
|
export OUTPUT_DIR="/root/install"
|
|
|
|
|
|
mkdir -p "${OUTPUT_DIR}/log/"
|
|
export DebugLog="${OUTPUT_DIR}/log/log-kaz-$(date +%y-%m-%d-%T)-"
|
|
(
|
|
echo "########## ********** Start kaz.sh $(date +%D-%T)"
|
|
|
|
docker-clean -a
|
|
rm -rf /kaz
|
|
|
|
if [ -z "${KAZBRANCH}" ] ; then
|
|
KAZBRANCH="master"
|
|
fi
|
|
echo -e "\n #### git checkout ${KAZBRANCH}\n"
|
|
|
|
|
|
# copie des sources
|
|
cd /
|
|
[ -f kaz ] || git clone https://git.kaz.bzh/KAZ/kaz.git
|
|
(cd /kaz ; git checkout "${KAZBRANCH}" )
|
|
find /kaz -name \*.sh -exec chmod a+x {} \;
|
|
|
|
# pour ceux qui disposent d'un cache apt local et pas la fibre
|
|
if [ -f "${DIR}/.apt-mirror-config" ]; then
|
|
rsync -a "${DIR}/.apt-mirror-config" /kaz/
|
|
fi
|
|
if [ -f "${DIR}/.proxy-config" ]; then
|
|
rsync -a "${DIR}/.proxy-config" /etc/profile.d/proxy.sh
|
|
rsync -a "${DIR}/.proxy-config" /kaz/
|
|
fi
|
|
if [ -f "${DIR}/.docker-config.json" ]; then
|
|
mkdir -p /root/.docker
|
|
rsync -a "${DIR}/.docker-config.json" /root/.docker/config.json
|
|
fi
|
|
|
|
|
|
|
|
echo -e "\n #### rsync download\n"
|
|
[ -d "${DIR}/kaz/download" ] &&
|
|
rsync -a "${DIR}/kaz/download/" /kaz/download/
|
|
[ -d "${DIR}/kaz/git" ] &&
|
|
rsync -a "${DIR}/kaz/git/" /kaz/git/
|
|
[ -f "${DIR}/kaz/config/dockers.env" ] &&
|
|
[ ! -f "/kaz/config/dockers.env" ] &&
|
|
rsync -a "${DIR}/kaz/config/dockers.env" /kaz/config/dockers.env
|
|
for type in mail orga proxy withMail withoutMail ; do
|
|
[ -f "${DIR}/kaz/config/container-${type}.list" ] &&
|
|
[ ! -f "/kaz/config/config/container-${type}.list" ] &&
|
|
rsync -a "${DIR}/kaz/config/container-${type}.list" /kaz/config/
|
|
done
|
|
|
|
echo -e "\n #### secretGen\n"
|
|
/kaz/bin/secretGen.sh
|
|
|
|
/kaz/bin/install.sh
|
|
|
|
# clear apt cache
|
|
DEBIAN_FRONTEND=noninteractive apt-get autoremove -y
|
|
DEBIAN_FRONTEND=noninteractive apt-get clean
|
|
|
|
echo "########## ********** End kaz.sh $(date +%D-%T)"
|
|
) > >(tee ${DebugLog}stdout.log) 2> >(tee ${DebugLog}stderr.log >&2)
|