view syslog2iptables.conf.make @ 69:0e736950a117 stable-1-0-16

fix post uninstall script; allow config bucket count zero to disable a pattern
author Carl Byington <carl@five-ten-sg.com>
date Mon, 21 Dec 2015 07:56:18 -0800
parents d80641be405b
children cc01f2caff37
line wrap: on
line source

#!/bin/bash

(
    echo '// generated by syslog2iptables.conf.make'
    echo ''
    cat syslog2iptables.conf.top

    for fn in /var/log/httpd/access*log; do
        if [ -f "$fn" ]; then
            echo "    file \"$fn\" {"
            cat syslog2iptables.conf.httpd
            echo "    };"
        fi
    done

    cat syslog2iptables.conf.bottom
) >syslog2iptables.conf