summaryrefslogblamecommitdiffstats
path: root/satellit_installer/includes/10-install_packages.inc
blob: 2201b643b8d89e48b1692366632e147399679447 (plain) (tree)




















                                                                    
#!/bin/bash

install_packages() {
	local NEEDED_PACKAGES="$1"

	echo "#"
	echo "# Installing packages. This may take a while."
	echo "#"
	for PACKAGE in $NEEDED_PACKAGES; do
		echo -n "# Installing package $PACKAGE... "
		apt-get -qq -y install ${PACKAGE} 2>/dev/null 1>&2
		ERR=$?
		if [ "$ERR" -ne 0 ]; then
			echo "# Could not install package $PACKAGE!"
			# Weitere Fehlerbehandlung folgt
		else
			echo "ok."
		fi
	done
}