860e341034
1. add sahara sudoer 2. sahara config path is error sahara config path is : /sahara/etc/sahara 3. sahara sync db command is error sync db command is: sahara-db-manage Reference link: http://docs.openstack.org/developer/sahara/userdoc/installation.guide.html Change-Id: Ic4967248079bb555a2f6c0948782fc3c02d2903d Closes-Bug: #1609860
9 lines
281 B
Bash
9 lines
281 B
Bash
#!/bin/bash
|
|
|
|
# Bootstrap and exit if KOLLA_BOOTSTRAP variable is set. This catches all cases
|
|
# of the KOLLA_BOOTSTRAP variable being set, including empty.
|
|
if [[ "${!KOLLA_BOOTSTRAP[@]}" ]]; then
|
|
sahara-db-manage --config-file /etc/sahara/sahara.conf upgrade head
|
|
exit 0
|
|
fi
|