1
0
peilaus alkaen https://github.com/limosek/zaf.git synced 2025-10-31 09:37:37 +01:00

Repaired dependency checking on older debian systems

This commit is contained in:
Lukas Macura
2016-12-11 14:58:05 +01:00
vanhempi 2b41fc57a5
commit 6204eacd6a

Näytä tiedosto

@@ -158,7 +158,7 @@ zaf_install_agent_opkg() {
# $* - packages
zaf_check_deps_dpkg() {
for i in $*; do
dpkg-query -f '${db:Status-Status},${Package}\n' -W $* 2>/dev/null | grep -q "^installed"
dpkg-query -f '${db:Status-Status},${Package}\n' -W $* 2>/dev/null | grep -qE "^(installed|^,)"
done
}