Move rackspace templates in a contrib directory

The patch moves the templates using rackspace resources in a contrib
directory and excludes them from the validation tool.

Change-Id: Ib9bdb642439468aca27804c00d2c53d5ed9ed2b4
This commit is contained in:
Thomas Herve 2014-03-28 13:42:27 +01:00
parent 1b48017020
commit 390fb36e7f
3 changed files with 6 additions and 0 deletions

View File

@ -5,6 +5,9 @@ import subprocess
import sys
EXCLUDED_DIRS = ('contrib',)
def main(args):
if len(args) != 1:
raise SystemExit("Takes one argument, the path to the templates")
@ -12,6 +15,9 @@ def main(args):
path = args[0]
got_error = False
for root, dirs, files in os.walk(path):
for excluded in EXCLUDED_DIRS:
if excluded in dirs:
dirs.remove(excluded)
for name in files:
if name.endswith((".yaml", ".template")):
got_error = validate(root, name)