remove brackets around boolean condition expression
Change-Id: Ia550d4603d9520ddea84a144e5e042903456d96d Closes-Bug: 1405319
This commit is contained in:
parent
fe2f986816
commit
1eb4c6a375
@ -292,7 +292,7 @@ function configure_cinder {
|
|||||||
configure_cinder_driver
|
configure_cinder_driver
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [[ is_fedora && $DISTRO =~ (rhel6) ]]; then
|
if is_fedora && [[ $DISTRO =~ (rhel6) ]]; then
|
||||||
# Cinder clones are slightly larger due to some extra
|
# Cinder clones are slightly larger due to some extra
|
||||||
# metadata. RHEL6 will not allow auto-extending of LV's
|
# metadata. RHEL6 will not allow auto-extending of LV's
|
||||||
# without this, leading to clones giving hard-to-track disk
|
# without this, leading to clones giving hard-to-track disk
|
||||||
|
@ -72,7 +72,7 @@ function _horizon_config_set {
|
|||||||
# cleanup_horizon() - Remove residual data files, anything left over from previous
|
# cleanup_horizon() - Remove residual data files, anything left over from previous
|
||||||
# runs that a clean run would need to clean up
|
# runs that a clean run would need to clean up
|
||||||
function cleanup_horizon {
|
function cleanup_horizon {
|
||||||
if [[ is_fedora && $DISTRO =~ (rhel6) ]]; then
|
if is_fedora && [[ $DISTRO =~ (rhel6) ]]; then
|
||||||
# If ``/usr/bin/node`` points into ``$DEST``
|
# If ``/usr/bin/node`` points into ``$DEST``
|
||||||
# we installed it via ``install_nodejs``
|
# we installed it via ``install_nodejs``
|
||||||
if [[ $(readlink -f /usr/bin/node) =~ ($DEST) ]]; then
|
if [[ $(readlink -f /usr/bin/node) =~ ($DEST) ]]; then
|
||||||
|
@ -751,7 +751,7 @@ function stop_neutron {
|
|||||||
# cleanup_neutron() - Remove residual data files, anything left over from previous
|
# cleanup_neutron() - Remove residual data files, anything left over from previous
|
||||||
# runs that a clean run would need to clean up
|
# runs that a clean run would need to clean up
|
||||||
function cleanup_neutron {
|
function cleanup_neutron {
|
||||||
if [[ is_provider_network && is_ironic_hardware ]]; then
|
if is_provider_network && is_ironic_hardware; then
|
||||||
for IP in $(ip addr show dev $OVS_PHYSICAL_BRIDGE | grep ' inet ' | awk '{print $2}'); do
|
for IP in $(ip addr show dev $OVS_PHYSICAL_BRIDGE | grep ' inet ' | awk '{print $2}'); do
|
||||||
sudo ip addr del $IP dev $OVS_PHYSICAL_BRIDGE
|
sudo ip addr del $IP dev $OVS_PHYSICAL_BRIDGE
|
||||||
sudo ip addr add $IP dev $PUBLIC_INTERFACE
|
sudo ip addr add $IP dev $PUBLIC_INTERFACE
|
||||||
|
Loading…
Reference in New Issue
Block a user