Merge changes from topic "OOM-1810"
[oom/offline-installer.git] / build / creating_data / remote-list-gathering.sh
1 #   COPYRIGHT NOTICE STARTS HERE
2 #
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
18
19
20 if [[ -z "$ONAP_SERVERS" ]]; then
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
28
29 echo "Using onap servers: $ONAP_SERVERS"
30
31 cd $(dirname $0)
32
33 for server in $ONAP_SERVERS; do
34
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
41
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
49
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"
52