Sha256: 82a57ff1530191414f616b2b8bc3b4cc17bc983a4cd9725204ce1fc44382ecf8
Contents?: true
Size: 1.16 KB
Versions: 3
Compression:
Stored size: 1.16 KB
Contents
#!/bin/bash # Copyright (c) 2013-2015 SUSE LLC # # This program is free software; you can redistribute it and/or # modify it under the terms of version 3 of the GNU General Public License as # published by the Free Software Foundation. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, contact SUSE LLC. # # To contact SUSE about this file by physical or electronic mail, # you may find current contact information at www.suse.com # Print a list of each package with changed managed files followed by a list of # the changed files, e.g. # # libpulse0-4.0.git.270.g9490a: # S.5...... c /etc/pulse/client.conf # ntp-4.2.6p5: # S.5...... c /etc/ntp.conf for package in `rpm -qa --queryformat "%{NAME}-%{VERSION}\\n"`; do CHANGES=`rpm -V --nodeps --nodigest --nosignature --nomtime --nolinkto $package`; if [ -n "$CHANGES" ]; then echo -e "$package:\\n$CHANGES"; fi; done
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
machinery-tool-1.6.0 | helpers/changed_managed_files.sh |
machinery-tool-1.5.0 | helpers/changed_managed_files.sh |
machinery-tool-1.4.0 | helpers/changed_managed_files.sh |