taler-deployment

Deployment scripts and configuration files
Log | Files | Refs | README

commit c291795bf490eecbec47e85097012c4905ca9a9b
parent 9196188cb98a64bde615a2f2099e1ac8fa40e384
Author: Marcello Stanisci <marcello.stanisci@inria.fr>
Date:   Thu, 10 Nov 2016 11:06:39 +0100

removing .sh from deployed shell scripts

Diffstat:
Ddocker/selenium/launch_chrome_container.sh | 3---
Ddocker/selenium/launch_selenium_test.sh | 27---------------------------
2 files changed, 0 insertions(+), 30 deletions(-)

diff --git a/docker/selenium/launch_chrome_container.sh b/docker/selenium/launch_chrome_container.sh @@ -1,3 +0,0 @@ -#!/bin/bash - -docker run --name big_heap -e JAVA_OPTS=-Xmx1g -d -p 4444:4444 selenium/standalone-chrome-debug diff --git a/docker/selenium/launch_selenium_test.sh b/docker/selenium/launch_selenium_test.sh @@ -1,27 +0,0 @@ -#!/bin/bash - -# Takes only the docker-machine's IP address, assuming that the -# chrome-docker service runs on port 4444 - -# FIXME use getopt -TEMP=`getopt -o r: --long docker-ip: -n 'launch_selenium_test.sh' -- "$@"` -eval set -- "$TEMP" - -if test "$1" != '--docker-ip'; then - IP=$(docker-machine ip) -else - IP=$2 -fi - - -# update wallet -(cd $HOME/wallet-webex && git pull && ./configure && make) - -eval $(docker-machine env) -# Yes, assume it's already running.. -docker restart big_heap - -# call python3 selenium script -python3 $HOME/wallet-webex/selenium/test.py \ - --ext-unpacked $HOME/wallet-webex \ - --remote http://$IP:4444/wd/hub