Update install script to be able to run multiple times

This commit is contained in:
Przemek Grondek 2022-05-19 19:31:38 +02:00
parent ac4d628d0b
commit e20362ec07

View File

@ -6,7 +6,7 @@ SUDO='sudo'
ANSIBLE_REPO='https://git.grondek.pl/pgrondek/ansible-desktop.git'
if [[ "$EUID" == 0 ]]; then
echo "Run script as normal user"
echo "Run script as normal user"
fi
"${SUDO}" apt update
@ -14,8 +14,11 @@ fi
"${SUDO}" apt-add-repository --yes --update ppa:ansible/ansible
"${SUDO}" apt install -y git ansible
mkdir -p "${HOME}/src"
cd "${HOME}/src"
git clone "$ANSIBLE_REPO"
cd ansible-desktop
if [ -d "${HOME}/src/ansible-desktop" ]; then
mkdir -p "${HOME}/src"
cd "${HOME}/src"
git clone "$ANSIBLE_REPO"
fi
cd "${HOME}/src/ansible-desktop"
git pull
ansible-playbook localhost.yml