sshguard: fix rubocop warnings.
This commit is contained in:
parent
34a88f6d3b
commit
2437a84465
1 changed files with 2 additions and 2 deletions
|
@ -32,11 +32,11 @@ class Sshguard < Formula
|
|||
end
|
||||
|
||||
def firewall
|
||||
MacOS.version >= :lion ? "pf" : "ipfw"
|
||||
(MacOS.version >= :lion) ? "pf" : "ipfw"
|
||||
end
|
||||
|
||||
def log_path
|
||||
MacOS.version >= :lion ? "/var/log/system.log" : "/var/log/secure.log"
|
||||
(MacOS.version >= :lion) ? "/var/log/system.log" : "/var/log/secure.log"
|
||||
end
|
||||
|
||||
def caveats
|
||||
|
|
Loading…
Reference in a new issue