Skip to content
This repository has been archived by the owner on Mar 27, 2022. It is now read-only.

libsnappy1 has been replaced and jdk updated for debian 9 #116

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
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 libexec/configure_startup_processes.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
# limitations under the License.

# Populates /etc/init.d scripts to keep processes up on startup
apt-get install -y sysv-rc-conf

set -e

Expand Down
2 changes: 1 addition & 1 deletion libexec/install_hadoop.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
set -e

# Install Snappy native libs first:
install_application "libsnappy1" "snappy"
install_application "libsnappy1v5" "snappy"
install_application "libsnappy-dev" "snappy-devel"

# We'll use this to get architecture information later
Expand Down
4 changes: 2 additions & 2 deletions libexec/install_java.sh
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@

if (( ${INSTALL_JDK_DEVEL} )); then
echo 'Installing JDK with compiler and tools'
install_application "openjdk-7-jdk" "java-1.7.0-openjdk-devel"
install_application "openjdk-11-jdk" "java-1.11.0-openjdk-devel"
else
echo 'Installing minimal JRE'
install_application "openjdk-7-jre-headless" "java-1.7.0-openjdk"
install_application "openjdk-11-jre-headless" "java-1.11.0-openjdk"
fi