summaryrefslogtreecommitdiffstats
path: root/satellit_installer/includes/00-variables.inc
diff options
context:
space:
mode:
authorChristian Rößler2014-10-21 16:42:05 +0200
committerChristian Rößler2014-10-21 16:42:05 +0200
commit9c0a4e8707b2455525c4d7f960f6b1d366636cf0 (patch)
tree31de6ce437af3d066e743910099b423a055b0786 /satellit_installer/includes/00-variables.inc
parentAdd apt config for unattended upgrades, refactor global variables a bit (diff)
downloadsetup-scripts-9c0a4e8707b2455525c4d7f960f6b1d366636cf0.tar.gz
setup-scripts-9c0a4e8707b2455525c4d7f960f6b1d366636cf0.tar.xz
setup-scripts-9c0a4e8707b2455525c4d7f960f6b1d366636cf0.zip
[SSPS] Trying to fix trouble due to apt-get's usage of 'recommended' packages
Diffstat (limited to 'satellit_installer/includes/00-variables.inc')
-rw-r--r--satellit_installer/includes/00-variables.inc8
1 files changed, 7 insertions, 1 deletions
diff --git a/satellit_installer/includes/00-variables.inc b/satellit_installer/includes/00-variables.inc
index 94c3b58..1134881 100644
--- a/satellit_installer/includes/00-variables.inc
+++ b/satellit_installer/includes/00-variables.inc
@@ -25,10 +25,16 @@ export LANG="en_US.UTF-8"
PACKAGELIST_SCRIPT="cracklib-runtime wget"
# Set list of needed packages (server needs) - remember, Debian-specific so far.
+# Keep in mind we use for standard installing of these packages the apt-get install
+# options (-qq -y) --no-install-recommends to keep the list of installed packages
+# lithe and lean. So, if you add a package here make sure it installs using these options.
+# If this is not the case or in doubt use PACKAGELIST_WITH_RECOMMENDS below.
PACKAGELIST_SERVER="mysql-server lighttpd pure-ftpd-mysql atftpd php5-cgi php5-curl cifs-utils"
-PACKAGELIST_SERVER+=" sudo php5-common php5-mysqlnd php5-cli openjdk-7-jre-headless nfs-kernel-server"
+PACKAGELIST_SERVER+=" sudo php5-common php5-mysqlnd php5-cli nfs-kernel-server"
PACKAGELIST_SERVER+=" nfs-common libowfat0 ldap-utils vim gcc make unattended-upgrades"
+# Enter here packages needing installation of recommended packages as determines by apt-get:
+PACKAGELIST_WITH_RECOMMENDS="openjdk-7-jre-headless"
### http for static files:
HTTP_BASE="http://132.230.8.69/satellit/"