os-net-config: log at log level info again...

We standardized the logging options in os-net-config in
I31005e4e10372018685a93dc2f80619f16c513d9. Previously
os-net-config was functionally logging at the info level
however, which is what we want.

This patch switches all the os-net-config commands to use
-v INFO level logging again.

Change-Id: Ia90a83da27cd4767425c4913fd150d5df5c3163e
This commit is contained in:
Dan Prince 2014-12-17 08:57:10 -05:00
parent 9cec4f6c95
commit 2df6e04fe0
2 changed files with 2 additions and 2 deletions

View File

@ -113,4 +113,4 @@ if [ -n "$PUBLIC_INTERFACE_ROUTE" ]; then
fi
fi
os-net-config -c /etc/os-net-config/neutron-openvswitch-agent.conf -d
os-net-config -c /etc/os-net-config/neutron-openvswitch-agent.conf -v

View File

@ -4,5 +4,5 @@ set -eux
NET_CONFIG=$(os-apply-config --key os_net_config --type raw --key-default '')
if [ -n "$NET_CONFIG" ]; then
os-net-config -c /etc/os-net-config/config.json -d
os-net-config -c /etc/os-net-config/config.json -v
fi