blob: 72b74a115c0cd93e781a35d67996fa578770f198 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#!/bin/sh
set -e
case "$1" in
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
pkg_status=`dpkg-query -f '${Status}' -W pkg-nonexistent`
if [ "$pkg_status" = "install ok installed" ]; then
echo "Pass: pkg-nonexistent is installed"
else
echo "Fail: pkg-nonexistent is not installed ($pkg_status)"
exit 1
fi
;;
esac
exit 0
|