ungleich-tools/openstack/init-openstack-env.sh
2024-01-06 19:29:52 +01:00

15 lines
329 B
Bash
Executable file

#!/bin/sh
mkdir -p ~/osh
cd ~/osh
if [ ! -d openstack-helm ]; then
git clone https://opendev.org/openstack/openstack-helm.git
else
cd openstack-helm && git pull
fi
if [ ! -d openstack-helm-infa ]; then
git clone https://opendev.org/openstack/openstack-helm-infra.git
else
cd openstack-helm-infra && git pull
fi