Petr Ospalý | 03e6124 | 2019-01-03 16:54:50 +0100 | [diff] [blame] | 1 | # COPYRIGHT NOTICE STARTS HERE |
| 2 | # |
Piotr Perzanowski | 01a83b0 | 2018-12-18 16:50:45 +0100 | [diff] [blame] | 3 | # Copyright 2018 © Samsung Electronics Co., Ltd. |
| 4 | # |
| 5 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 6 | # you may not use this file except in compliance with the License. |
| 7 | # You may obtain a copy of the License at |
| 8 | # |
| 9 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 10 | # |
| 11 | # Unless required by applicable law or agreed to in writing, software |
| 12 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 13 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 14 | # See the License for the specific language governing permissions and |
| 15 | # limitations under the License. |
| 16 | # |
| 17 | # COPYRIGHT NOTICE ENDS HERE |
Petr Ospalý | 03e6124 | 2019-01-03 16:54:50 +0100 | [diff] [blame] | 18 | |
| 19 | |
Piotr Perzanowski | 01a83b0 | 2018-12-18 16:50:45 +0100 | [diff] [blame] | 20 | if [[ -z "$ONAP_SERVERS" ]]; then |
Piotr Perzanowski | 01a83b0 | 2018-12-18 16:50:45 +0100 | [diff] [blame] | 21 | echo "Missing environment ONAP_SERVERS" |
| 22 | exit 1 |
| 23 | fi |
| 24 | if [[ -z "$LISTS_DIR" ]]; then |
| 25 | LISTS_DIR=. |
| 26 | echo "Using default output directory ." |
| 27 | fi |
Petr Ospalý | 03e6124 | 2019-01-03 16:54:50 +0100 | [diff] [blame] | 28 | |
Piotr Perzanowski | 01a83b0 | 2018-12-18 16:50:45 +0100 | [diff] [blame] | 29 | echo "Using onap servers: $ONAP_SERVERS" |
Petr Ospalý | 03e6124 | 2019-01-03 16:54:50 +0100 | [diff] [blame] | 30 | |
Piotr Perzanowski | 01a83b0 | 2018-12-18 16:50:45 +0100 | [diff] [blame] | 31 | cd $(dirname $0) |
Petr Ospalý | 03e6124 | 2019-01-03 16:54:50 +0100 | [diff] [blame] | 32 | |
Piotr Perzanowski | 01a83b0 | 2018-12-18 16:50:45 +0100 | [diff] [blame] | 33 | for server in $ONAP_SERVERS; do |
Petr Ospalý | 03e6124 | 2019-01-03 16:54:50 +0100 | [diff] [blame] | 34 | |
Piotr Perzanowski | 01a83b0 | 2018-12-18 16:50:45 +0100 | [diff] [blame] | 35 | echo "=================================================" |
| 36 | echo "Gathering docker images list from server: $server" |
| 37 | echo "=================================================" |
| 38 | scp ./make-docker-images-list.sh $server:/tmp/ |
| 39 | ssh $server '/tmp/make-docker-images-list.sh;rm /tmp/make-docker-images-list.sh' |
| 40 | scp $server:/tmp/docker_image_list.txt $LISTS_DIR/docker_image_list-${server}.txt |
Petr Ospalý | 03e6124 | 2019-01-03 16:54:50 +0100 | [diff] [blame] | 41 | |
Piotr Perzanowski | 01a83b0 | 2018-12-18 16:50:45 +0100 | [diff] [blame] | 42 | echo "=================================================" |
| 43 | echo "Gathering NPM packages list from server: $server" |
| 44 | echo "=================================================" |
| 45 | scp ./make-npm-list.sh $server:/tmp/ |
| 46 | ssh $server '/tmp/make-npm-list.sh; rm /tmp/make-npm-list.sh' |
| 47 | scp $server:/tmp/npm.list $LISTS_DIR/npm_list-${server}.txt |
| 48 | done |
Petr Ospalý | 03e6124 | 2019-01-03 16:54:50 +0100 | [diff] [blame] | 49 | |
Piotr Perzanowski | 01a83b0 | 2018-12-18 16:50:45 +0100 | [diff] [blame] | 50 | cat "$LISTS_DIR"/docker_image_list-*.txt | grep -v sonatype/nexus3 | grep -v own_nginx | sort | uniq > "$LISTS_DIR/docker_image_list.txt" |
| 51 | cat "$LISTS_DIR"/npm_list-*.txt | grep -v '^@$' | sort | uniq > "$LISTS_DIR/npm_list.txt" |
Petr Ospalý | 03e6124 | 2019-01-03 16:54:50 +0100 | [diff] [blame] | 52 | |