25 lines
405 B
Bash
25 lines
405 B
Bash
#!/bin/bash
|
|
|
|
dir=/root/tools/ansible
|
|
host=depl
|
|
hostf=$host.sio.lan
|
|
repo=gsb
|
|
|
|
[ -e $dir ] || mkdir -p $dir
|
|
|
|
grep $hostf /etc/hosts > /dev/null || echo "10.121.38.10 $hostf $host" >> /etc/hosts
|
|
|
|
cd $dir
|
|
|
|
hostname > hosts
|
|
|
|
#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
|