fuel-plugin-external-glusterfs/pre_build_hook

20 lines
747 B
Bash
Executable File

#!/bin/bash
set -eux
ROOT="$(dirname `readlink -f $0`)"
MODULES="${ROOT}"/deployment_scripts/puppet/modules
TMP_DIR="${ROOT}"/tmp
mkdir -p "${MODULES}"
mkdir -p "${TMP_DIR}"
REPO_PATH='https://github.com/stackforge/fuel-library/tarball/f43d885914d74fbd062096763222f350f47480e1'
RPM_REPO="${ROOT}"/repositories/centos/
DEB_REPO="${ROOT}"/repositories/ubuntu/
wget -qO- "${REPO_PATH}" | \
tar -C "${MODULES}" --strip-components=3 -zxvf - \
stackforge-fuel-library-f43d885/deployment/puppet/{inifile,stdlib}
wget -A rpm -P $RPM_REPO -nd -r -np --reject "index.html*" "http://mirror.fuel-infra.org/fuel-plugins/6.0/centos/"
wget -A deb -P $DEB_REPO -nd -r -np --reject "index.html*" "http://mirror.fuel-infra.org/fuel-plugins/6.0/ubuntu/"