From 02fee4e15cdeb63d9752af79e1525337be732486 Mon Sep 17 00:00:00 2001 From: Jason Stephenson Date: Thu, 2 Mar 2017 18:06:00 -0500 Subject: [PATCH] Install lsb-release in build_essentials installer function. Modify both eg_wheezy_installer.sh and eg_jessie_installer.sh to install lsb-release. It is now required on wheezy to install PostgreSQL 9.4. For some reason, this package is missing on the wheezy vm image. I added it to the jessie installer also, just in case. Signed-off-by: Jason Stephenson --- installer/jessie/eg_jessie_installer.sh | 2 +- installer/wheezy/eg_wheezy_installer.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/installer/jessie/eg_jessie_installer.sh b/installer/jessie/eg_jessie_installer.sh index c4b82858b..2cd571c72 100755 --- a/installer/jessie/eg_jessie_installer.sh +++ b/installer/jessie/eg_jessie_installer.sh @@ -155,7 +155,7 @@ function build_essentials { # Install some essential tools apt-get update \ && apt-get -yq dist-upgrade \ - && apt-get -yq install build-essential automake git psmisc ntp rsyslog; + && apt-get -yq install build-essential automake git psmisc ntp rsyslog lsb-release; echo Return Value = $? if [ $LIVETEST ]; then diff --git a/installer/wheezy/eg_wheezy_installer.sh b/installer/wheezy/eg_wheezy_installer.sh index 971cdf743..0afe03f25 100755 --- a/installer/wheezy/eg_wheezy_installer.sh +++ b/installer/wheezy/eg_wheezy_installer.sh @@ -163,7 +163,7 @@ function build_essentials { # Install some essential tools apt-get update \ && apt-get -yq dist-upgrade \ - && apt-get -yq install build-essential automake git psmisc ntp rsyslog; + && apt-get -yq install build-essential automake git psmisc ntp rsyslog lsb-release; echo Return Value = $? if [ $LIVETEST ]; then -- 2.11.0