Merge pull request #15979 from alebcay/allow-sshpass

missing_formula: remove sshpass from denylist
This commit is contained in:
Mike McQuaid 2023-09-08 00:47:10 -04:00 committed by GitHub
commit 4a208108fd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 0 additions and 5 deletions

View File

@ -36,10 +36,6 @@ module Homebrew
lzma is now part of the xz formula:
brew install xz
EOS
when "sshpass" then <<~EOS
We won't add sshpass because it makes it too easy for novice SSH users to
ruin SSH's security.
EOS
when "gsutil" then <<~EOS
gsutil is available through pip:
pip3 install gsutil

View File

@ -21,7 +21,6 @@ describe Homebrew::MissingFormula do
it { is_expected.to disallow("pil") }
it { is_expected.to disallow("macruby") }
it { is_expected.to disallow("lzma") }
it { is_expected.to disallow("sshpass") }
it { is_expected.to disallow("gsutil") }
it { is_expected.to disallow("gfortran") }
it { is_expected.to disallow("play") }