[Date Prev][Date Next] [Thread Prev][Thread Next]
[Thread Index]
[Date Index]
[Author Index]
Re: rpm-4.0.4: rpm -V md5sum failure, file corruption
- From: Matthew Callaway <matt-rpm kindjal net>
- To: RPM Development List <rpm-list redhat com>
- Subject: Re: rpm-4.0.4: rpm -V md5sum failure, file corruption
- Date: Tue, 21 Jan 2003 11:20:19 -0600 (CST)
Here's the awk that was referred to in the previous email:
# rogue.awk - Find files that are not accounted for
#
# awk -f rogue.awk
#
# Rogue is called from a cron job on an hourly basis.
# It parses files in the filesystem and checks to see
# that they belong to an rpm. Then it prints the
# output of rpm -Va to verify those files that do
# belong to an rpm.
#
BEGIN {
# Required commands
cmd1="/bin/rpm -qal";
cmd2="find / -path '/proc' -prune -o -print";
# All rpms in rpm db
while ( cmd1 | getline ) {
rpmfiles[$0] = 1;
}
close(cmd1);
# All files on system not in an rpm
while ( cmd2 | getline ) {
if (!($0 in rpmfiles)) {
orphans[$0] = 1;
}
}
close(cmd2);
delete rpmfiles;
exit 0; # hit 'END' right now
}
END {
for (file in orphans) {
print "R:orphaned",file | "sort"
}
while ("rpm -Va --noghost" | getline) {
print "R:" $0 | "sort"
}
}
[Date Prev][Date Next] [Thread Prev][Thread Next]
[Thread Index]
[Date Index]
[Author Index]
[]