Allow unauthenticated packages in the deployment scripts

DocImpact
Change-Id: Ib9464781fefd958d7ef4dfb5c9bf36aa7adcc663
Closes-Bug: #1622506
Signed-off-by: Maksim Malchuk <mmalchuk@mirantis.com>
This commit is contained in:
Maksim Malchuk 2016-09-12 15:52:50 +03:00
parent 4cd808c39b
commit 4983c5c7d0
5 changed files with 7 additions and 7 deletions

View File

@ -13,7 +13,7 @@ fi
function install_package {
if [ $OS_NAME == 'ubuntu' ]; then
apt-get install -y fuel-simple-service
apt-get install -y --force-yes -o 'APT::Get::AllowUnauthenticated=1' fuel-simple-service
elif [ $OS_NAME == 'centos' ]; then
yum install -y fuel-simple-service
fi

View File

@ -13,7 +13,7 @@ fi
function install_package {
if [ $OS_NAME == 'ubuntu' ]; then
apt-get install -y fuel-simple-service
apt-get install -y --force-yes -o 'APT::Get::AllowUnauthenticated=1' fuel-simple-service
elif [ $OS_NAME == 'centos' ]; then
yum install -y fuel-simple-service
fi

View File

@ -13,7 +13,7 @@ fi
function install_package {
if [ $OS_NAME == 'ubuntu' ]; then
apt-get install -y fuel-simple-service
apt-get install -y --force-yes -o 'APT::Get::AllowUnauthenticated=1' fuel-simple-service
elif [ $OS_NAME == 'centos' ]; then
yum install -y fuel-simple-service
fi

View File

@ -13,11 +13,11 @@ fi
function install_package {
if [ $OS_NAME == 'ubuntu' ]; then
apt-get install -y fuel-simple-service
apt-get install -y --force-yes -o 'APT::Get::AllowUnauthenticated=1' fuel-simple-service
elif [ $OS_NAME == 'centos' ]; then
yum install -y fuel-simple-service
fi
}
install_package
fuel-simple-service.py &
fuel-simple-service.py &

View File

@ -13,11 +13,11 @@ fi
function install_package {
if [ $OS_NAME == 'ubuntu' ]; then
apt-get install -y fuel-simple-service
apt-get install -y --force-yes -o 'APT::Get::AllowUnauthenticated=1' fuel-simple-service
elif [ $OS_NAME == 'centos' ]; then
yum install -y fuel-simple-service
fi
}
install_package
fuel-simple-service.py &
fuel-simple-service.py &