summaryrefslogtreecommitdiffstats
path: root/tests/t-triggers-depfarcycle/pkg-trigger/DEBIAN/postinst
blob: ffbad78278dcc2559985fe913e6591175ae4dae8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/sh
set -e

case "$1" in
  triggered)
    pkg_status=`dpkg-query -f '${Status}' -W pkg-depends-a`
    if [ "$pkg_status" = "install ok installed" ]; then
      echo "Pass: pkg-depends is installed"
    else
      echo "Fail: pkg-depends is not installed ($pkg_status)"
      exit 1
    fi
  ;;
esac

exit 0