73fb164a81925bcc394026d167b0753445c4d5fe
[oom/offline-installer.git] / bash / tools / 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 #    ONAP_SERVERS="oom-beijing-postRC2-master oom-beijing-postRC2-compute1 oom-beijing-postRC2-compute2"
22     echo "Missing environment ONAP_SERVERS"
23     exit 1
24 fi
25 if [[ -z "$LISTS_DIR" ]]; then
26     LISTS_DIR=.
27     echo "Using default output directory ."
28 fi
29
30 echo "Using onap servers: $ONAP_SERVERS"
31
32 cd $(dirname $0)
33
34 for server in $ONAP_SERVERS; do
35
36     echo "================================================="
37     echo "Gathering docker images list from server: $server"
38     echo "================================================="
39     scp ./make-docker-images-list.sh $server:/tmp/
40     ssh $server '/tmp/make-docker-images-list.sh;rm /tmp/make-docker-images-list.sh'
41     scp $server:/tmp/docker_image_list.txt $LISTS_DIR/docker_image_list-${server}.txt
42
43     echo "================================================="
44     echo "Gathering NPM packages list from server: $server"
45     echo "================================================="
46     scp ./make-npm-list.sh $server:/tmp/
47     ssh $server '/tmp/make-npm-list.sh; rm /tmp/make-npm-list.sh'
48     scp $server:/tmp/npm.list $LISTS_DIR/npm_list-${server}.txt
49 done
50
51 cat "$LISTS_DIR"/docker_image_list-*.txt | grep -v sonatype/nexus3 | grep -v own_nginx | sort | uniq > "$LISTS_DIR/docker_image_list.txt"
52 cat "$LISTS_DIR"/npm_list-*.txt | grep -v '^@$' | sort | uniq > "$LISTS_DIR/npm_list.txt"
53