forked from ungleich-public/cdist
vorbereitung um mit zypper auch spezifische versionen zu unterstützen
parameter ptype auch beim package type zulassen, analog anderer parameter von subtypes ...
This commit is contained in:
parent
e1eae5604e
commit
785e54b311
2 changed files with 7 additions and 3 deletions
|
@ -3,3 +3,4 @@ version
|
||||||
type
|
type
|
||||||
pkgsite
|
pkgsite
|
||||||
state
|
state
|
||||||
|
pstate
|
||||||
|
|
|
@ -35,11 +35,14 @@ else
|
||||||
fi
|
fi
|
||||||
|
|
||||||
case "$ptype" in
|
case "$ptype" in
|
||||||
package|patch|pattern|product|srcpackage)
|
package)
|
||||||
zypper se --match-exact -i -t "$ptype" "$name" | grep -E '^i' | cut -d " " -f 3 || true
|
zypper search --details --match-exact --installed-only --type "$ptype" "$name" | grep -E '^i' | cut -d " " -f 3,7 || true
|
||||||
|
;;
|
||||||
|
patch|pattern|product|srcpackage)
|
||||||
|
zypper search --match-exact --installed-only --type "$ptype" "$name" | grep -E '^i' | cut -d " " -f 3 || true
|
||||||
;;
|
;;
|
||||||
*)
|
*)
|
||||||
echo "unknown type in __package_zypper explorer" &>2
|
echo "unknown ptype in __package_zypper explorer" &>2
|
||||||
exit 1
|
exit 1
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
|
Loading…
Reference in a new issue