Matteo Scandolo | aca8665 | 2017-08-08 13:05:27 -0700 | [diff] [blame] | 1 | |
| 2 | # Copyright 2017-present Open Networking Foundation |
| 3 | # |
| 4 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | # you may not use this file except in compliance with the License. |
| 6 | # You may obtain a copy of the License at |
| 7 | # |
| 8 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | # |
| 10 | # Unless required by applicable law or agreed to in writing, software |
| 11 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | # See the License for the specific language governing permissions and |
| 14 | # limitations under the License. |
| 15 | |
| 16 | |
AyumuUeha | 76a01bc | 2017-05-18 13:34:13 +0900 | [diff] [blame] | 17 | #!/usr/bin/env bash |
| 18 | #************************************************************/ |
| 19 | #** File: nova_consolidator_setup.sh */ |
| 20 | #** Contents: Contains shell script to setup required */ |
| 21 | #** software for Nova Consolidator application*/ |
| 22 | #************************************************************/ |
| 23 | |
| 24 | sudo apt-get update -y |
| 25 | sudo apt-get install npm -y |
| 26 | echo "#### Install Json-Server ####" |
| 27 | sudo npm install -g json-server@0.9.6 |
| 28 | cd /usr/local/lib/node_modules |
| 29 | echo "#### Install Line-Reader ####" |
| 30 | sudo npm install -g line-reader |
| 31 | echo "#### Install Blue-Bird ####" |
| 32 | sudo npm install -g bluebird |
| 33 | echo "#### Install JS files ####" |
| 34 | sudo cp /usr/local/pppoe/utils/netcfgConsolidator/* /usr/local/lib/node_modules/. |