Browse Source

Added to all scripts

pull/137/head
Donal Byrne 6 years ago
committed by Michael Bianco
parent
commit
b6cc872ced
  1. 2
      beanstalkd-console/install.sh
  2. 2
      beanstalkd/install.sh
  3. 2
      hugin/install.sh
  4. 2
      jekyll/install.sh
  5. 2
      latex/install.sh
  6. 2
      mysql-backup-s3/backup.sh
  7. 2
      mysql-backup-s3/install.sh
  8. 2
      mysql-backup-s3/run.sh
  9. 2
      nodejs/install.sh
  10. 2
      octave/install.sh
  11. 2
      postgres-backup-s3/backup.sh
  12. 2
      postgres-backup-s3/install.sh
  13. 2
      postgres-backup-s3/run.sh
  14. 2
      postgres-restore-s3/install.sh
  15. 2
      postgres-restore-s3/restore.sh
  16. 2
      redis-commander/install.sh
  17. 2
      rust/install.sh
  18. 2
      s3cmd/install.sh
  19. 2
      s3cmd/run.sh
  20. 2
      scala-sbt-docker/install.sh
  21. 2
      swagger-ui/run.sh

2
beanstalkd-console/install.sh

@ -1,7 +1,7 @@
#! /bin/sh
# exit if a command fails
set -e
set -eo pipefail
# download
curl -sL https://github.com/ptrofimov/beanstalk_console/archive/master.tar.gz | tar xvz -C /tmp

2
beanstalkd/install.sh

@ -1,7 +1,7 @@
#! /bin/bash
# exit if a command fails
set -e
set -eo pipefail
version="1.10"

2
hugin/install.sh

@ -1,7 +1,7 @@
#! /bin/bash
# exit if a command fails
set -e
set -eo pipefail
# install hugin & panotools
apt-get update && apt-get install -y hugin

2
jekyll/install.sh

@ -1,7 +1,7 @@
#! /bin/bash
# exit if a command fails
set -e
set -eo pipefail
# install ruby 1.9.1
apt-get update && apt-get install -y ruby ruby-dev build-essential

2
latex/install.sh

@ -1,7 +1,7 @@
#! /bin/bash
# exit if a command fails
set -e
set -eo pipefail
# install full texlive distribution
apt-get update && apt-get install -y texlive-full

2
mysql-backup-s3/backup.sh

@ -1,6 +1,6 @@
#!/bin/sh
set -e
set -eo pipefail
if [ "${S3_ACCESS_KEY_ID}" == "**None**" ]; then
echo "Warning: You did not set the S3_ACCESS_KEY_ID environment variable."

2
mysql-backup-s3/install.sh

@ -1,7 +1,7 @@
#!/bin/sh
# exit if a command fails
set -e
set -eo pipefail
apk update

2
mysql-backup-s3/run.sh

@ -1,6 +1,6 @@
#!/bin/sh
set -e
set -eo pipefail
if [ "${S3_S3V4}" = "yes" ]; then
aws configure set default.s3.signature_version s3v4

2
nodejs/install.sh

@ -1,7 +1,7 @@
#! /bin/bash
# exit if a command fails
set -e
set -eo pipefail
# install node & npm
apt-get update && apt-get install -y nodejs npm

2
octave/install.sh

@ -1,7 +1,7 @@
#! /bin/bash
# exit if a command fails
set -e
set -eo pipefail
# install octave 3.6.2 (less needed as frontend)
apt-get update && apt-get install -y octave less

2
postgres-backup-s3/backup.sh

@ -1,6 +1,6 @@
#! /bin/sh
set -e
set -eo pipefail
set -o pipefail
if [ "${S3_ACCESS_KEY_ID}" = "**None**" ]; then

2
postgres-backup-s3/install.sh

@ -1,7 +1,7 @@
#! /bin/sh
# exit if a command fails
set -e
set -eo pipefail
apk update

2
postgres-backup-s3/run.sh

@ -1,6 +1,6 @@
#! /bin/sh
set -e
set -eo pipefail
if [ "${S3_S3V4}" = "yes" ]; then
aws configure set default.s3.signature_version s3v4

2
postgres-restore-s3/install.sh

@ -1,7 +1,7 @@
#! /bin/sh
# exit if a command fails
set -e
set -eo pipefail
apk update

2
postgres-restore-s3/restore.sh

@ -1,6 +1,6 @@
#! /bin/sh
set -e
set -eo pipefail
set -o pipefail
if [ "${S3_ACCESS_KEY_ID}" = "**None**" ]; then

2
redis-commander/install.sh

@ -1,7 +1,7 @@
#! /bin/bash
# exit if a command fails
set -e
set -eo pipefail
# install node & npm
apt-get update && apt-get install -y nodejs npm

2
rust/install.sh

@ -1,7 +1,7 @@
#! /bin/bash
# exit if a command fails
set -e
set -eo pipefail
# install curl (needed to install rust)
apt-get update && apt-get install -y curl gdb g++-multilib lib32stdc++6 libssl-dev libncurses5-dev

2
s3cmd/install.sh

@ -1,7 +1,7 @@
#! /bin/sh
# exit if a command fails
set -e
set -eo pipefail
# install s3cmd
apk update

2
s3cmd/run.sh

@ -1,6 +1,6 @@
#! /bin/sh
set -e
set -eo pipefail
echo "Running s3cmd ..."

2
scala-sbt-docker/install.sh

@ -1,7 +1,7 @@
#! /bin/bash
# exit if a command fails
set -e
set -eo pipefail
# install node & npm
apt-get update && apt-get install -y nodejs npm

2
swagger-ui/run.sh

@ -1,6 +1,6 @@
#! /bin/sh
set -e
set -eo pipefail
replace_in_index () {
if [ "$1" != "**None**" ]; then

Loading…
Cancel
Save