summaryrefslogtreecommitdiff
path: root/list-installed.d
diff options
context:
space:
mode:
authorJoey Hess <joey@gnu.kitenet.net>2009-02-17 21:49:51 -0500
committerJoey Hess <joey@gnu.kitenet.net>2009-02-17 21:49:51 -0500
commit9d2c186b389fb663c6c15e356691d149ce917dd2 (patch)
tree88a25513581837e6a49b90857579a3b097b7c63f /list-installed.d
parent16c86e81564f0e2e2fd0173235913028c9310907 (diff)
Implement list-installed for rpm. (Untested)
Diffstat (limited to 'list-installed.d')
-rwxr-xr-xlist-installed.d/50list-installed2
1 files changed, 2 insertions, 0 deletions
diff --git a/list-installed.d/50list-installed b/list-installed.d/50list-installed
index 116a42a..eb3ec96 100755
--- a/list-installed.d/50list-installed
+++ b/list-installed.d/50list-installed
@@ -5,4 +5,6 @@
if [ "$LOWLEVEL_PACKAGE_MANAGER" = dpkg ]; then
dpkg-query -W -f '${Status}\t${Package} ${Version}\n' | \
egrep '(ok installed|ok config-files)' | cut -f2,3
+elif [ "$LOWLEVEL_PACKAGE_MANAGER" = rpm ]; then
+ rpm -qa --queryformat "%{name} %{version}\n" | sort
fi