diff options
author | Guillaume Cottenceau <gc@mandriva.com> | 2003-11-19 22:22:43 +0000 |
---|---|---|
committer | Guillaume Cottenceau <gc@mandriva.com> | 2003-11-19 22:22:43 +0000 |
commit | 6c63406c04b2cc66258dfe117373adc392e80017 (patch) | |
tree | 01dc58f045adbef7f857635b5505654345c22535 /move/tools/check-fc-cache.pl | |
parent | 451de13005412568a5800480b140e67721dc61cc (diff) | |
download | drakx-backup-do-not-use-6c63406c04b2cc66258dfe117373adc392e80017.tar drakx-backup-do-not-use-6c63406c04b2cc66258dfe117373adc392e80017.tar.gz drakx-backup-do-not-use-6c63406c04b2cc66258dfe117373adc392e80017.tar.bz2 drakx-backup-do-not-use-6c63406c04b2cc66258dfe117373adc392e80017.tar.xz drakx-backup-do-not-use-6c63406c04b2cc66258dfe117373adc392e80017.zip |
add
check if files are more recent (fc-cache will slow down starting of drakx)
Diffstat (limited to 'move/tools/check-fc-cache.pl')
-rw-r--r-- | move/tools/check-fc-cache.pl | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/move/tools/check-fc-cache.pl b/move/tools/check-fc-cache.pl new file mode 100644 index 000000000..42902835f --- /dev/null +++ b/move/tools/check-fc-cache.pl @@ -0,0 +1,27 @@ +#!/usr/bin/perl + +# check if files are more recent (fc-cache will slow down starting of drakx) + +use MDK::Common; + +sub stat_ { + my ($dev,$ino,$mode,$nlink,$uid,$gid,$rdev,$size,$atime,$mtime,$ctime,$blksize,$blocks) = stat $_[0]; + max($mtime, $ctime); +} + +my $prefix = $ARGV[0] || '/tmp/live_tree'; + +my @conf = cat_("$prefix/etc/fonts/fonts.conf"); + +foreach my $line (@conf) { + while ($line =~ m|<dir>([^<]+)</dir|g) { + my $dir = $1; + $dir =~ m|^/| or next; + print "dir $prefix$dir\n"; + foreach my $d (chomp_(`find $prefix$dir -type d 2>/dev/null`)) { + my $ref = stat_("$d/fonts.cache-1"); + stat_($_) > $ref and print "\t$_\n" foreach glob("$d/*"); + } + } +} + |