adapt pull-config pout gitea distant

This commit is contained in:
sio 2021-01-06 09:49:04 +01:00
parent 41a489362b
commit 69e676027c

View File

@ -1,24 +1,21 @@
#!/bin/bash #!/bin/bash
if [ -z ${UREP+x} ]; then
UREP=https://gitea.lyc-lecastel.fr/gadmin/gsb2021.git
fi
REPO=$(basename ${UREP})
dir=/root/tools/ansible dir=/root/tools/ansible
host=depl host=depl
hostf=$host.sio.lan hostf=$host.sio.lan
repo=gsb
[ -e $dir ] || mkdir -p $dir [ -e ${dir} ] || mkdir -p ${dir}
grep $hostf /etc/hosts > /dev/null || echo "10.121.38.10 $hostf $host" >> /etc/hosts #grep $hostf /etc/hosts > /dev/null || echo "10.121.38.10 $hostf $host" >> /etc/hosts
cd $dir cd ${dir}
hostname > hosts hostname > hosts
ansible-pull -i ${dir}/hosts -U "${UREP}"
#git clone http://$host/$repo.git
cd $repo
git pull
ansible-playbook -c local -i 'localhost,' $(hostname).yml
#ansible-pull -i $dir/hosts -d $repo -U http://$host/$repo.git
exit 0 exit 0