diff options
author | Victor Morales <victor.morales@intel.com> | 2017-10-20 13:18:26 -0700 |
---|---|---|
committer | Victor Morales <victor.morales@intel.com> | 2017-10-20 13:30:38 -0700 |
commit | 21404d790afd758160f0562859bf186821d55c70 (patch) | |
tree | 35d12acbc325c30d6a6b168e20e9fb96b5aafe87 /bootstrap/vagrant-onap/tools | |
parent | 9f8434f582bbc87d0299d4b4d94c93e20b400a94 (diff) |
Create a upstream repos validator
This Unit Test helps to validate the usage of the official
repositrories and fails in case that a minimum are not used.
Change-Id: Id5a922163a8a0d16de5460aee92e5cced3f285a3
Signed-off-by: Victor Morales <victor.morales@intel.com>
Issue-Id: INT-289
Diffstat (limited to 'bootstrap/vagrant-onap/tools')
-rwxr-xr-x | bootstrap/vagrant-onap/tools/update_project_list.sh | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/bootstrap/vagrant-onap/tools/update_project_list.sh b/bootstrap/vagrant-onap/tools/update_project_list.sh new file mode 100755 index 000000000..2f0ebb9a3 --- /dev/null +++ b/bootstrap/vagrant-onap/tools/update_project_list.sh @@ -0,0 +1,5 @@ +#!/bin/bash + +ssh $1@gerrit.onap.org -p 29418 gerrit ls-projects > projects.tmp +tail -n +2 projects.tmp > tests/projects.txt +rm projects.tmp |