Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions nomad/scripts/install-docker.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ set -x

YUM=$(which yum 2>/dev/null)
APT_GET=$(which apt-get 2>/dev/null)
set -e

echo "Running"

Expand Down
1 change: 1 addition & 0 deletions nomad/scripts/install-java.sh
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ echo "Installing Oracle JDK"
# Detect package management system.
YUM=$(which yum 2>/dev/null)
APT_GET=$(which apt-get 2>/dev/null)
set -e

if [[ ! -z ${YUM} ]]; then
echo "RHEL/CentOS system detected"
Expand Down
1 change: 1 addition & 0 deletions nomad/scripts/install-nomad-systemd.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ echo "Running"
# Detect package management system.
YUM=$(which yum 2>/dev/null)
APT_GET=$(which apt-get 2>/dev/null)
set -e

if [[ ! -z ${YUM} ]]; then
SYSTEMD_DIR="/etc/systemd/system"
Expand Down
2 changes: 1 addition & 1 deletion nomad/scripts/install-nomad.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/bin/bash
set -x
set -ex

echo "Running"

Expand Down