Install lsb-release in build_essentials installer function.
authorJason Stephenson <jason@sigio.com>
Thu, 2 Mar 2017 23:06:00 +0000 (18:06 -0500)
committerJason Stephenson <jason@sigio.com>
Thu, 2 Mar 2017 23:06:00 +0000 (18:06 -0500)
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 <jason@sigio.com>
installer/jessie/eg_jessie_installer.sh
installer/wheezy/eg_wheezy_installer.sh

index c4b8285..2cd571c 100755 (executable)
@@ -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
index 971cdf7..0afe03f 100755 (executable)
@@ -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