summaryrefslogtreecommitdiffstats
path: root/base/all/root/scripts/tasks/install_extra_packages.sh
diff options
context:
space:
mode:
Diffstat (limited to 'base/all/root/scripts/tasks/install_extra_packages.sh')
-rwxr-xr-xbase/all/root/scripts/tasks/install_extra_packages.sh12
1 files changed, 0 insertions, 12 deletions
diff --git a/base/all/root/scripts/tasks/install_extra_packages.sh b/base/all/root/scripts/tasks/install_extra_packages.sh
deleted file mode 100755
index 39140da..0000000
--- a/base/all/root/scripts/tasks/install_extra_packages.sh
+++ /dev/null
@@ -1,12 +0,0 @@
-#!/bin/sh
-
-#config: CONFIG_EXTRA_PACKAGES
-
-echo "Updating from YUM repositories"
-yum -y update
-
-extra_packages="$CONFIG_EXTRA_PACKAGES"
-if [ -n "$extra_packages" ] ; then
- echo "Installing extra packages"
- yum -y install $extra_packages
-fi