unlock the whole power of zypper

added the ptype parameter (package type of zypper install)
remotes/origin/4.0-pre-not-stable
Daniel Heule 12 years ago
parent a5d2cdecf4
commit e1eae5604e
  1. 19
      cdist/conf/type/__package_zypper/explorer/pkg_version
  2. 11
      cdist/conf/type/__package_zypper/gencode-remote
  3. 6
      cdist/conf/type/__package_zypper/man.text
  4. 1
      cdist/conf/type/__package_zypper/parameter/default/ptype
  5. 1
      cdist/conf/type/__package_zypper/parameter/optional

@ -1,6 +1,7 @@
#!/bin/sh
#
# 2011-2012 Nico Schottelius (nico-cdist at schottelius.org)
# 2013 Daniel Heule (hda at sfs.biz)
#
# This file is part of cdist.
#
@ -18,7 +19,7 @@
# along with cdist. If not, see <http://www.gnu.org/licenses/>.
#
#
# Retrieve the status of a package
# Retrieve the status of a package off different types
#
if [ -f "$__object/parameter/name" ]; then
@ -27,4 +28,18 @@ else
name="$__object_id"
fi
rpm -q --whatprovides "$name" | grep -v 'no package provides' || true
if [ -f "$__object/parameter/ptype" ]; then
ptype="$(cat "$__object/parameter/ptype")"
else
ptype="package"
fi
case "$ptype" in
package|patch|pattern|product|srcpackage)
zypper se --match-exact -i -t "$ptype" "$name" | grep -E '^i' | cut -d " " -f 3 || true
;;
*)
echo "unknown type in __package_zypper explorer" &>2
exit 1
;;
esac

@ -1,6 +1,7 @@
#!/bin/sh
#
# 2012 Nico Schottelius (nico-cdist at schottelius.org)
# 2013 Daniel Heule (hda at sfs.biz)
#
# This file is part of cdist.
#
@ -39,6 +40,12 @@ else
state_should="present"
fi
if [ -f "$__object/parameter/ptype" ]; then
ptype="$(cat "$__object/parameter/ptype")"
else
ptype="package"
fi
pkg_version="$(cat "$__object/explorer/pkg_version")"
if [ -z "$pkg_version" ]; then
state_is="absent"
@ -51,10 +58,10 @@ fi
case "$state_should" in
present)
echo zypper $globalopts install --auto-agree-with-licenses \"$name\" ">/dev/null"
echo zypper $globalopts install --type \"$ptype\" --auto-agree-with-licenses \"$name\" ">/dev/null"
;;
absent)
echo zypper $globalopts remove \"$name\" ">/dev/null"
echo zypper $globalopts remove --type \"$ptype\" \"$name\" ">/dev/null"
;;
*)
echo "Unknown state: $state_should" >&2

@ -26,6 +26,9 @@ name::
state::
Either "present" or "absent", defaults to "present"
ptype::
Either "package", "patch", "pattern", "product" or "srcpackage", defaults to "package". For a description see man zypper.
EXAMPLES
--------
@ -39,6 +42,9 @@ __package_zypper python --state present --name python2
# Remove package
__package_zypper cfengine --state absent
# install all packages which belongs to pattern x11
__package_zypper x11 --ptype pattern --state present
--------------------------------------------------------------------------------

Loading…
Cancel
Save