Fixed key duplication in neutron-server
Plus added the yamllint to pass gate test Change-Id: I55f40f5a138cb1f43117fa3ec07c34a68b5afea0
This commit is contained in:
parent
fea79988bd
commit
1c7e104ade
@ -21,8 +21,6 @@ service:
|
||||
files:
|
||||
- neutron-server-bootstrap.sh
|
||||
- name: neutron-db-sync
|
||||
dependencies:
|
||||
- neutron-bootstrap
|
||||
type: single
|
||||
command: neutron-db-manage --config-file /etc/neutron/neutron.conf --config-file /etc/neutron/plugins/ml2/ml2_conf.ini upgrade head
|
||||
dependencies:
|
||||
|
7
tools/run-check-yaml-syntax.sh
Executable file
7
tools/run-check-yaml-syntax.sh
Executable file
@ -0,0 +1,7 @@
|
||||
#!/bin/bash
|
||||
|
||||
### Temp yaml syntax checker script.
|
||||
set -e
|
||||
for file in $(find . -name '*.yaml'); do
|
||||
yamllint -d relaxed $file
|
||||
done
|
Loading…
Reference in New Issue
Block a user