From 1b2b1db5d7c0240237fda8988ef419c5a01c3042 Mon Sep 17 00:00:00 2001 From: Peter Palfrader Date: Wed, 18 Oct 2006 13:11:27 +0000 Subject: Do weblogs git-svn-id: svn+ssh://asteria.noreply.org/svn/weaselutils/trunk@203 bc3d92e2-beff-0310-a7cd-cc87d7ac0ede --- bin/weblogs-merge | 79 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 79 insertions(+) create mode 100755 bin/weblogs-merge (limited to 'bin/weblogs-merge') diff --git a/bin/weblogs-merge b/bin/weblogs-merge new file mode 100755 index 0000000..553bc49 --- /dev/null +++ b/bin/weblogs-merge @@ -0,0 +1,79 @@ +#!/usr/bin/ruby + +# +# Copyright (c) 2004,2005 Florian Reitmeir +# based on a script from Peter Palfrader +# +# All rights reserved. +# +# MIT license. +# + +require 'optparse' +require 'find' + +$VERBOSE = nil +$NOTHING = nil + +def show_help(parser, code=0, io=STDOUT) + io.puts parser + exit(code) +end +ARGV.options do |opts| + opts.on_tail("-h", "--help", "Display this help screen") { show_help(opts) } + opts.on("-v", "--verbose" , nil, "Be verbose") { $VERBOSE = 1 } + opts.on("-n", "--do-nothing" , nil, "Do nothing") { $VERBOSE = 1; $NOTHING = 1 } + opts.parse! +end + +root = '/var/www/' +dir = "/logs-archive/" + +year = Time.new.year.to_s +month = Time.new.month.to_s + +Dir.chdir(root) + +Dir.glob("*").each{ |client| + Dir.chdir(root) + next unless File.stat( client ).directory? + next unless File.exist?( client + dir ) + next unless File.stat( client + dir ).directory? + + Dir.chdir(client+dir) + + if $VERBOSE then + puts 'pwd :'+root+client+dir + end + + if ! File.writable?(root+client+dir) then + puts 'log dir not writeable' + exit 1 + end + + files = Array.new + + Find.find(root+client+dir) { |file| + if File.file?(file) then + files.push(file); + end + } + files.sort! # sort by date (name in this case) + + files.each { |file| + if file =~ %r{(.*)-(access|error).log.(\d+)-(\d)+-(\d+)(-\d+)?.gz} then + if ($3 == year && $4 == month) then + next + else + store = [$1,$2,$3].join('-')+'.gz' + end + puts ' src: '+file if $VERBOSE + puts 'dest: '+store if $VERBOSE + if $NOTHING && system('cat '+file+' >>'+store) then + File.unlink(file) + end + else + puts 'did not match: '+file + end + } +} -- cgit v1.2.3