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) --- TODO | 5 ----- debian/changelog | 6 ++++++ list-installed.d/50list-installed | 2 ++ 3 files changed, 8 insertions(+), 5 deletions(-) diff --git a/TODO b/TODO index c2dbe7a..4b3927f 100644 --- a/TODO +++ b/TODO @@ -24,8 +24,3 @@ This is already doable, would just need modifying the pre-install and post-instlal stuff (ie, it needs to commit in the subdirs too). Using mr would be a possibility.. - -* Figure out what packages were acted on, and include that info in the commit - message - - Done for dpkg, but not for other package managers like rpm. diff --git a/debian/changelog b/debian/changelog index 8bc3dca..aa052bc 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +etckeeper (0.32) UNRELEASED; urgency=low + + * Implement list-installed for rpm. (Untested) + + -- Joey Hess Tue, 17 Feb 2009 21:49:29 -0500 + etckeeper (0.31) unstable; urgency=low * Avoid relying on USER being set, won't be for cron job. 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