2014-10-14 12:17:47 -04:00
|
|
|
#!/usr/bin/python
|
|
|
|
|
2015-07-10 12:01:28 -07:00
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
# you may not use this file except in compliance with the License.
|
|
|
|
# You may obtain a copy of the License at
|
|
|
|
#
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
# limitations under the License.
|
|
|
|
|
2014-10-14 12:17:47 -04:00
|
|
|
import argparse
|
|
|
|
import logging
|
2015-07-10 12:01:28 -07:00
|
|
|
import sys
|
|
|
|
import yaml
|
2014-10-14 12:17:47 -04:00
|
|
|
|
2015-07-07 08:22:25 -07:00
|
|
|
|
2014-10-14 12:17:47 -04:00
|
|
|
def parse_args():
|
|
|
|
p = argparse.ArgumentParser()
|
|
|
|
p.add_argument('input', nargs='*')
|
|
|
|
return p.parse_args()
|
|
|
|
|
2015-07-07 08:22:25 -07:00
|
|
|
|
2014-10-14 12:17:47 -04:00
|
|
|
def main():
|
|
|
|
args = parse_args()
|
|
|
|
logging.basicConfig()
|
|
|
|
res = 0
|
|
|
|
|
|
|
|
for filename in args.input:
|
|
|
|
with open(filename) as fd:
|
|
|
|
try:
|
2015-07-07 08:22:25 -07:00
|
|
|
yaml.load(fd)
|
2014-10-14 12:17:47 -04:00
|
|
|
except yaml.error.YAMLError as error:
|
|
|
|
res = 1
|
|
|
|
logging.error('%s failed validation: %s',
|
|
|
|
filename, error)
|
|
|
|
|
|
|
|
sys.exit(res)
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
main()
|