Sha256: 397541acfb8dcfa4ac04deddcc2cfde27ba5a81d351f6ca6837a944dc5bc73e9

Contents?: true

Size: 1.16 KB

Versions: 4

Compression:

Stored size: 1.16 KB

Contents

#!/bin/bash
# Copyright (c) 2013-2014 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

4 entries across 4 versions & 1 rubygems

Version Path
machinery-tool-1.2.0 helpers/changed_managed_files.sh
machinery-tool-1.1.1 helpers/changed_managed_files.sh
machinery-tool-1.1.0 helpers/changed_managed_files.sh
machinery-tool-1.0.2 helpers/changed_managed_files.sh