blob: 87f78d041a6b73a3f13f0f0c6b044652e9173bbc (
plain)
1
2
3
4
5
6
7
|
#!/bin/sh
# libpam's only versioned artefact is libpam.so (covered by the SONAME checks);
# its helper binaries have no version flag, so accept the version here.
case "$1" in
libpam) exit 0 ;;
esac
exit 1
|