Remove bash autocluster script and supporting files
[autocluster.git] / base / all / root / scripts / tasks / install_extra_packages.sh
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 (executable)
index 39140da..0000000
+++ /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