diff options
author | Joey Hess <joey@kitenet.net> | 2014-11-05 10:50:56 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2014-11-05 10:50:56 -0400 |
commit | 6335925c321c39aad3556d7afb5651902659c559 (patch) | |
tree | d3866270aefa3958f5de228a4e71cca81ef28500 /list-installed.d/50list-installed | |
parent | c5c69ebbd5bda0736fccc37421fe1b8f874f7407 (diff) |
Add architecture info to dpkg list-installed. Closes: #768145
Diffstat (limited to 'list-installed.d/50list-installed')
-rwxr-xr-x | list-installed.d/50list-installed | 2 |
1 files changed, 1 insertions, 1 deletions
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 |