diff options
-rw-r--r-- | debian/changelog | 1 | ||||
-rwxr-xr-x | list-installed.d/50list-installed | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/debian/changelog b/debian/changelog index 252dead..e08a204 100644 --- a/debian/changelog +++ b/debian/changelog @@ -2,6 +2,7 @@ etckeeper (1.16) UNRELEASED; urgency=medium * Added support for Fedora's DNF highlevel package manager. Thanks, Peter Listiak and Petr Spacek. + * Add architecture info to dpkg list-installed. Closes: #768145 -- Joey Hess <joeyh@debian.org> Tue, 28 Oct 2014 16:44:00 -0400 diff --git a/list-installed.d/50list-installed b/list-installed.d/50list-installed index f392027..ac34202 100755 --- a/list-installed.d/50list-installed +++ b/list-installed.d/50list-installed @@ -3,7 +3,7 @@ # (or removed but still with config-files) packages, in the # format "package version\n" (or something similar). if [ "$LOWLEVEL_PACKAGE_MANAGER" = dpkg ]; then - dpkg-query -W -f '${Status}\t${Package} ${Version}\n' | \ + dpkg-query -W -f '${Status}\t${Package} ${Version} ${Architecture}\n' | \ egrep '(ok installed|ok config-files)' | cut -f2,3 elif [ "$LOWLEVEL_PACKAGE_MANAGER" = rpm ]; then rpm -qa --qf "%|epoch?{%{epoch}}:{0}|:%{name}-%{version}-%{release}.%{arch}\n" | sort |