0701e2b9b2
This change adds a Puppetfile validator script that can be used by jenkins to ensure that all Puppetfile entries are properly formated and reference a tag based on our policies. Change-Id: I623929df3a309110d26e166ac9067c715b14188b Partial-Bug: #1501379
10 lines
111 B
Bash
Executable File
10 lines
111 B
Bash
Executable File
#!/bin/bash
|
|
|
|
DIR=`dirname $0`
|
|
|
|
echo 'Ruby version:'
|
|
ruby --version
|
|
|
|
"${DIR}/fuel_validate_puppetfile.rb" ${@}
|
|
|