From 9d2c186b389fb663c6c15e356691d149ce917dd2 Mon Sep 17 00:00:00 2001 From: Joey Hess Date: Tue, 17 Feb 2009 21:49:51 -0500 Subject: Implement list-installed for rpm. (Untested) --- list-installed.d/50list-installed | 2 ++ 1 file changed, 2 insertions(+) (limited to 'list-installed.d/50list-installed') 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 -- cgit v1.2.3