puppet-modulesync-configs/functions

17 lines
568 B
Bash

#!/bin/bash
#
# functions - puppet-openstack_spec_helper specific functions
#
install_module() {
if [ -d /home/zuul/src/opendev.org/openstack/puppet-openstack-cookiecutter ]; then
[ ! -d openstack ] && mkdir openstack
cp -R /home/zuul/src/opendev.org/openstack/puppet-openstack-cookiecutter openstack/puppet-openstack-cookiecutter
else
git clone https://git.openstack.org/openstack/puppet-openstack-cookiecutter openstack/puppet-openstack-cookiecutter
fi
cd openstack/puppet-openstack-cookiecutter
source functions
prepare_environment
}