Add test for credentials set
the /etc/kolla/adminrc.sh should be export before init vpn script, this ps to add test for credentials set to avoid it missing. Change-Id: Ib849d5f5804221c507c2466f2f08179340188c24
This commit is contained in:
parent
de1777134e
commit
44b49adda1
@ -2,6 +2,12 @@
|
||||
|
||||
# Script originally copied from https://wiki.openstack.org/wiki/Neutron/VPNaaS/HowToInstall
|
||||
|
||||
# Test for credentials set
|
||||
if [[ "${OS_USERNAME}" == "" ]]; then
|
||||
echo "No Keystone credentials specified. Try running source openrc"
|
||||
exit
|
||||
fi
|
||||
|
||||
EXT_NW_ID=`neutron net-list | awk '/public/{print $2}'`
|
||||
WEST_SUBNET='192.168.1.0/24'
|
||||
EAST_SUBNET='192.168.2.0/24'
|
||||
|
Loading…
Reference in New Issue
Block a user