1b9281a22c
Previously there are a lot of warning messages of setuptools in the log files of tox jobs. This is mainly caused by test samples because these are in python codes directories. This patch moves test samples from under {tosca-parser_root}/toscaparser/tests to under {tosca-parser_root}/samples/tests. This patch also contains the following changes: * Removed unused test samples. * Fixed usage.rst command example. * Changeing unit tests that reference external URL to use mock * Mock methods used in unit tests have been made into common methods. Change-Id: I80ab6ce0b3344f19afb4d16554c799747b1f2567
13 lines
464 B
Bash
Executable File
13 lines
464 B
Bash
Executable File
#!/bin/bash
|
|
# This script installs kibana and sets it up to run as a service in init.d
|
|
cd /opt
|
|
wget https://download.elastic.co/kibana/kibana/kibana-4.1.0-linux-x64.tar.gz
|
|
tar xzvf kibana-4.1.0-linux-x64.tar.gz
|
|
mv kibana-4.1.0-linux-x64 kibana
|
|
|
|
# set up to run as service
|
|
cd /etc/init.d
|
|
wget https://gist.githubusercontent.com/thisismitch/8b15ac909aed214ad04a/raw/bce61d85643c2dcdfbc2728c55a41dab444dca20/kibana4
|
|
chmod +x kibana4
|
|
update-rc.d kibana4 defaults 96 9
|