#!/bin/bash version="1.8" __dir="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" __file="${__dir}/$(basename "${BASH_SOURCE[0]}")" __base="$(basename ${__file})" __root="$(cd "$(dirname "${__dir}")" && pwd)" echo "dir : ${__dir}" echo "file : ${__file}" echo "base : ${__base}" echo "root : ${__root}" # version 1.8 # install git si besoin # install ansible si besoin + backports si wheezy readonly base=/root/tools/ansible readonly slist=/etc/apt/sources.list readonly host=depl readonly DEPLFILE=/root/local.ip DEPL="X.Y.Z.T" hostf="${host}.sio.lan" prj=gsb APT=apt which git >> /dev/null if [[ $? != 0 ]]; then ${APT} update echo "installation de git ..." ${APT} install -y git-core fi ${APT} update ${APT} upgrade -y #$APT install -y aptitude which ansible >> /dev/null if [[ $? != 0 ]]; then echo "installation de ansible ..." ${APT} install -y ansible fi [ -e "${base}" ] || mkdir -p "${base}" grep "${hostf}" /etc/hosts > /dev/null || echo "${DEPL} ${hostf} ${host}" >> /etc/hosts cd "${base}" export http_proxy= git clone http://"${host}"/${prj}.git cp ${prj}/pull-config ${base} echo "N'oubliez pasz d'indiquer l'adresse DEPL dans '/root/tools/ansible/pull-config'" echo "Vous pouvez lancer 'bash pull-config' depuis ${base} ..."