42 lines
763 B
Bash
42 lines
763 B
Bash
#!/bin/bash
|
|
|
|
dir=/root/tools/ansible
|
|
prj=gsb2025
|
|
opt=""
|
|
|
|
usage () {
|
|
echo "usage : $0 [ -h | -l ] [ autres arguments]"
|
|
echo "options : "
|
|
echo " -h : aide"
|
|
echo " -l : excecution locale sans pull-config ...."
|
|
}
|
|
|
|
if [ -z ${UREP+x} ]; then
|
|
UREP="https://gitea.lyc-lecastel.fr/${prj}/${prj}.git"
|
|
fi
|
|
|
|
dir=/root/tools/ansible
|
|
|
|
[ -e "${dir}" ] || mkdir -p "${dir}"
|
|
|
|
cd "${dir}" || exit 1
|
|
|
|
if [[ $# -ge 1 ]] ; then
|
|
opt=$1
|
|
fi
|
|
if [[ "${opt}" == '-h' ]] ; then
|
|
usage
|
|
exit 1
|
|
elif [[ "${opt}" == '-l' ]] ; then
|
|
cd "${dir}/${prj}" || exit 2
|
|
shift
|
|
echo "Execution locale ...."
|
|
ansible-playbook -i localhost, -c local "$(hostname).yml" "$@"
|
|
else
|
|
shift
|
|
echo "Execution distante ...."
|
|
ansible-pull -i "$(hostname)," -U "${UREP}" "$@"
|
|
fi
|
|
|
|
exit 0
|