diff options
author | Michael Polenchuk <mpolenchuk@mirantis.com> | 2017-03-29 11:14:30 +0400 |
---|---|---|
committer | Michael Polenchuk <mpolenchuk@mirantis.com> | 2017-03-29 11:21:55 +0400 |
commit | e797a9f954797949f676a46f5c9ceb31874f919a (patch) | |
tree | 2ea67e5d0d69b531f2f61f6226c0b110be216bac /fuel-plugin/pre_build_hook | |
parent | 3a2eb75a5ba494161655c84a23d11eb9f6a797e9 (diff) |
[fuel-plugin] Set default grub entry for kernel
JIRA: KVMFORNFV-77
Change-Id: Ibb764cd5fa9822d337ce6f948bff8213c1caa7eb
Signed-off-by: Paul Vaduva <Paul.Vaduva@enea.com>
Signed-off-by: Michael Polenchuk <mpolenchuk@mirantis.com>
Diffstat (limited to 'fuel-plugin/pre_build_hook')
-rwxr-xr-x | fuel-plugin/pre_build_hook | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/fuel-plugin/pre_build_hook b/fuel-plugin/pre_build_hook index a3c883283..7d9aa155f 100755 --- a/fuel-plugin/pre_build_hook +++ b/fuel-plugin/pre_build_hook @@ -4,6 +4,10 @@ set -eux BUILD_FOR=${BUILD_FOR:-ubuntu} DIR="$(dirname `readlink -f $0`)" +MODULES="${DIR}/deployment_scripts/puppet/modules" + +SHELLVAR_VERSION='2.2.1' +SHELLVAR_URL="https://github.com/hercules-team/augeasproviders_shellvar/archive/${SHELLVAR_VERSION}.tar.gz" function build_pkg { case $1 in @@ -25,3 +29,7 @@ for system in $BUILD_FOR do build_pkg $system done + +rm -rf ${MODULES}/shellvar +mkdir -p ${MODULES}/shellvar +wget -qO- ${SHELLVAR_URL} | tar -C ${MODULES}/shellvar --strip-components=1 -zxvf - |