summaryrefslogtreecommitdiffstats
path: root/debian/tests/check-installation
blob: c15d105930db521218155f8efd6a533d63044799 (plain)
1
2
3
4
5
6
7
8
9
#!/bin/bash

if [ -z "$(/sbin/ldconfig -p | grep libtirpc)" ]; then
  echo "no files found"
  exit 1
else
  echo "There are files"
  exit 0
fi