diff options
| author | David Holm | 2013-01-15 20:47:23 +0100 | 
|---|---|---|
| committer | Jack Nagel | 2013-04-03 17:24:34 -0500 | 
| commit | dcb1a4b46061163259cd91f8569606e1c68cb8a8 (patch) | |
| tree | 14f8319f4b7d2769e5048f0a563da66547ae384e /Library/Formula/sshguard.rb | |
| parent | 3730c0636fa344ad1e49697c3c5a8b867c62353a (diff) | |
| download | homebrew-dcb1a4b46061163259cd91f8569606e1c68cb8a8.tar.bz2 | |
sshguard: fixes to run on 10.7+
Closes #17100.
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
Diffstat (limited to 'Library/Formula/sshguard.rb')
| -rw-r--r-- | Library/Formula/sshguard.rb | 30 | 
1 files changed, 26 insertions, 4 deletions
diff --git a/Library/Formula/sshguard.rb b/Library/Formula/sshguard.rb index 52de534dc..6a8f848a1 100644 --- a/Library/Formula/sshguard.rb +++ b/Library/Formula/sshguard.rb @@ -13,15 +13,37 @@ class Sshguard < Formula    end    def install -    system "./configure", "--disable-debug", "--disable-dependency-tracking", +    system "./configure", "--disable-debug", +                          "--disable-dependency-tracking",                            "--prefix=#{prefix}", -                          "--with-firewall=ipfw" +                          "--with-firewall=#{firewall}"      system "make install"    end +  def firewall +    MacOS.version >= :lion ? "pf" : "ipfw" +  end + +  def log_path +    MacOS.version >= :lion ? "/var/log/system.log" : "/var/log/secure.log" +  end + +  def caveats +    if MacOS.version >= :lion then <<-EOS.undent +      Add the following lines to /etc/pf.conf to block entries in the sshguard +      table (replace $ext_if with your WAN interface): + +        table <sshguard> persist +        block in quick on $ext_if proto tcp from any to any port 22 label "ssh bruteforce" + +      Then run sudo pfctl -f /etc/pf.conf to reload the rules. +      EOS +    end +  end +    plist_options :startup => true -  def plist; <<-EOS +  def plist; <<-EOS.undent      <?xml version="1.0" encoding="UTF-8"?>      <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">      <plist version="1.0"> @@ -34,7 +56,7 @@ class Sshguard < Formula        <array>          <string>#{opt_prefix}/sbin/sshguard</string>          <string>-l</string> -        <string>/var/log/secure.log</string> +        <string>#{log_path}</string>        </array>        <key>RunAtLoad</key>        <true/>  | 
