blob: dde1e0f57b1fb5f8a63a5179638b9058ce9cdb43 [file] [log] [blame]
Petr Ospalý03e61242019-01-03 16:54:50 +01001# COPYRIGHT NOTICE STARTS HERE
2#
Piotr Perzanowski01a83b02018-12-18 16:50:45 +01003# 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ý03e61242019-01-03 16:54:50 +010018
19
Piotr Perzanowski01a83b02018-12-18 16:50:45 +010020if [[ -z "$ONAP_SERVERS" ]]; then
Piotr Perzanowski01a83b02018-12-18 16:50:45 +010021 echo "Missing environment ONAP_SERVERS"
22 exit 1
23fi
24if [[ -z "$LISTS_DIR" ]]; then
25 LISTS_DIR=.
26 echo "Using default output directory ."
27fi
Petr Ospalý03e61242019-01-03 16:54:50 +010028
Piotr Perzanowski01a83b02018-12-18 16:50:45 +010029echo "Using onap servers: $ONAP_SERVERS"
Petr Ospalý03e61242019-01-03 16:54:50 +010030
Piotr Perzanowski01a83b02018-12-18 16:50:45 +010031cd $(dirname $0)
Petr Ospalý03e61242019-01-03 16:54:50 +010032
Piotr Perzanowski01a83b02018-12-18 16:50:45 +010033for server in $ONAP_SERVERS; do
Petr Ospalý03e61242019-01-03 16:54:50 +010034
Piotr Perzanowski01a83b02018-12-18 16:50:45 +010035 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ý03e61242019-01-03 16:54:50 +010041
Piotr Perzanowski01a83b02018-12-18 16:50:45 +010042 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
48done
Petr Ospalý03e61242019-01-03 16:54:50 +010049
Piotr Perzanowski01a83b02018-12-18 16:50:45 +010050cat "$LISTS_DIR"/docker_image_list-*.txt | grep -v sonatype/nexus3 | grep -v own_nginx | sort | uniq > "$LISTS_DIR/docker_image_list.txt"
51cat "$LISTS_DIR"/npm_list-*.txt | grep -v '^@$' | sort | uniq > "$LISTS_DIR/npm_list.txt"
Petr Ospalý03e61242019-01-03 16:54:50 +010052