#!/bin/bash
# vim: cindent:shiftwidth=4:tabstop=4:smarttab:textwidth=100

function PACKAGES_WITHOUT_NETWORK_SOURCE {
	local PACKAGE_NAMES_LIST="$1"

    PACKAGE_NAMES=( $( tr ';' ' ' <<< "$PACKAGE_NAMES_LIST" ) )

	apt-get --only-upgrade upgrade ${PACKAGE_NAMES[@]}
}
