aboutsummaryrefslogblamecommitdiffstats
path: root/check-any-installed
blob: 83297696abed2b398488d21fd4f0f8823675430e (plain) (tree)
























                                                                
#!/bin/sh

set -ue

if test -r /etc/lsb-release; then
	. /etc/lsb-release
fi
if test -r ~.dotfiles/.work/distrib-tweak; then
	. ~.dotfiles/.work/distrib-tweak
fi

for pkg; do
	if test "${DISTRIB_ID}" = Arch; then
		if pacman -Qq -- "$pkg"; then
			exit 0;
		fi
	elif test "${DISTRIB_ID}" = Ubuntu; then
		if test "$pkg" = base || dpkg -s -- "$pkg"; then
			exit 0;
		fi
	else
		false
	fi
done </dev/null >/dev/null 2>/dev/null
exit 1