gsb2023/pre/pull-config
2023-01-05 11:44:26 +01:00

17 lines
258 B
Bash

#!/bin/bash
if [ -z ${UREP+x} ]; then
UREP=https://gitea.lyc-lecastel.fr/gadmin/gsb2022.git
fi
dir=/root/tools/ansible
[ -e "${dir}" ] || mkdir -p "${dir}"
cd "${dir}" || exit 1
hostname > hosts
ansible-pull -i "${dir}/hosts" -U "${UREP}"
exit 0