58 lines
2.6 KiB
Ruby
58 lines
2.6 KiB
Ruby
class GoogleAuthenticatorLibpam < Formula
|
|
desc "PAM module for two-factor authentication"
|
|
homepage "https://github.com/google/google-authenticator-libpam"
|
|
url "https://github.com/google/google-authenticator-libpam/archive/1.09.tar.gz"
|
|
sha256 "ab1d7983413dc2f11de2efa903e5c326af8cb9ea37765dacb39949417f7cd037"
|
|
license "Apache-2.0"
|
|
|
|
bottle do
|
|
sha256 cellar: :any_skip_relocation, arm64_ventura: "521a4e777e947db5535752430caee3bab7a95db3fc2897eb5d1487c269e97d09"
|
|
sha256 cellar: :any_skip_relocation, arm64_monterey: "ceb57c28fa8ac36471c762ab3d2dd67c5026a0568100e82b756cef2196b5747e"
|
|
sha256 cellar: :any_skip_relocation, arm64_big_sur: "8adf8be0fbea5003e02b748ef71a099635eb8dff716c62d6935581d493fcda78"
|
|
sha256 cellar: :any_skip_relocation, ventura: "dc592e42daa5e9d661de8c515b4e7e5f3ce0eb92d6287811f2bbf547edf0cf48"
|
|
sha256 cellar: :any_skip_relocation, monterey: "3b72851db1049b3e11e374e7afd80799b5724c76a31ad637a0853ce047d8fc4b"
|
|
sha256 cellar: :any_skip_relocation, big_sur: "edd70a2050f2b57337558bd372f5bfa78f45df8ce678e3a6c400310edaa830a9"
|
|
sha256 cellar: :any_skip_relocation, catalina: "4ed85644559250923d4b21f5b99643cad08eb8bbb63afc3827d7ac225b4581d7"
|
|
sha256 cellar: :any_skip_relocation, mojave: "d62c1f21ec88406788b314bd7a06c0e37e7ab9dad4237f6832441f235723d3cb"
|
|
sha256 cellar: :any_skip_relocation, high_sierra: "33fa28d290cb0068a67c288d4889967180de64aa895f0ac1a3aedcc38d6a7d7a"
|
|
sha256 cellar: :any_skip_relocation, x86_64_linux: "efb380cc5558a60396d25cabc8599511129b3ca44d4f232d7c9fd3e0e7b3a1ba"
|
|
end
|
|
|
|
depends_on "autoconf" => :build
|
|
depends_on "automake" => :build
|
|
depends_on "libtool" => :build
|
|
depends_on "qrencode"
|
|
|
|
on_linux do
|
|
depends_on "linux-pam"
|
|
end
|
|
|
|
def install
|
|
system "./bootstrap.sh"
|
|
system "./configure", "--disable-dependency-tracking",
|
|
"--disable-silent-rules",
|
|
"--prefix=#{prefix}"
|
|
system "make", "install"
|
|
end
|
|
|
|
def caveats
|
|
<<~EOS
|
|
Add 2-factor authentication for ssh:
|
|
echo "auth required #{opt_lib}/security/pam_google_authenticator.so" \\
|
|
| sudo tee -a /etc/pam.d/sshd
|
|
|
|
Add 2-factor authentication for ssh allowing users to log in without OTP:
|
|
echo "auth required #{opt_lib}/security/pam_google_authenticator.so" \\
|
|
"nullok" | sudo tee -a /etc/pam.d/sshd
|
|
|
|
(Or just manually edit /etc/pam.d/sshd)
|
|
EOS
|
|
end
|
|
|
|
test do
|
|
system "#{bin}/google-authenticator", "--force", "--time-based",
|
|
"--disallow-reuse", "--rate-limit=3", "--rate-time=30",
|
|
"--window-size=3", "--no-confirm"
|
|
end
|
|
end
|