summaryrefslogtreecommitdiff
path: root/src/is_unfree
blob: 64fc3222bded6078c22d811e768e83d956bc1874 (plain)
1
2
3
4
5
6
7
8
#!/bin/bash
# Checks if a package is on blacklist

. /usr/share/libretools/blacklist.sh

line=$(blacklist-lookup "$1")
[[ -n $line ]]
exit $?