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

case "$1" in
  configure)
    dpkg-trigger /test/trigger-b/test-file
  ;;
  triggered)
    pkg_status=`dpkg-query -f '${Status}' -W pkg-depends`
    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
    dpkg-trigger /test/trigger-b/test-file
  ;;
esac

exit 0