bug_2830: Remove reserve when checking out if the borrower is not the first one in...
[koha.git] / install_misc / ubuntu-pkg-check.sh
blob9303082ef031ef749bdec7a7c45b621cc72220cc
1 #!/bin/sh
3 UBUNTU_PACKAGES=`dirname $0`/ubuntu.packages
5 # sanity checks
7 if [ ! -e $UBUNTU_PACKAGES ]; then
8 echo ERROR: Could not find $UBUNTU_PACKAGES file for running check.
9 exit
12 # main
14 UBUNTU_PACKAGES_LIST=`awk '{print $1}' $UBUNTU_PACKAGES | grep -v '^\s*#' | grep -v '^\s*$'`
15 for F in $UBUNTU_PACKAGES_LIST; do
16 UBUNTU_PKG_POLICY=`apt-cache policy $F | grep "Installed:"`
17 UBUNTU_PKG_VERSION=`echo $UBUNTU_PKG_POLICY | awk '{print $2}'`
18 echo "$F = $UBUNTU_PKG_VERSION"
19 done