82 lines
2.5 KiB
Ruby
82 lines
2.5 KiB
Ruby
# Please don't update this formula until the release is official via
|
|
# mailing list or blog post. There's a history of GitHub tags moving around.
|
|
# https://github.com/hashicorp/vault/issues/1051
|
|
class Vault < Formula
|
|
desc "Secures, stores, and tightly controls access to secrets"
|
|
homepage "https://vaultproject.io/"
|
|
url "https://github.com/hashicorp/vault.git",
|
|
tag: "v1.6.0",
|
|
revision: "7ce0bd9691998e0443bc77e98b1e2a4ab1e965d4"
|
|
license "MPL-2.0"
|
|
head "https://github.com/hashicorp/vault.git"
|
|
|
|
livecheck do
|
|
url "https://releases.hashicorp.com/vault/"
|
|
regex(%r{href=.*?v?(\d+(?:\.\d+)+)/?["' >]}i)
|
|
end
|
|
|
|
bottle do
|
|
cellar :any_skip_relocation
|
|
rebuild 1
|
|
sha256 "3598ed488978ce4fd61e1e5fe52b2dbc0df5c7ffda92d42f97eb5c078b8a8f43" => :big_sur
|
|
sha256 "2bbff9f9a7826fd4c16d569f25b146d009c946e6c977e148ee48bd8676aaf012" => :catalina
|
|
sha256 "314868275bdfb1d4bc696a0dc28fac078417b4255cc427c23f05fb5915a52108" => :mojave
|
|
end
|
|
|
|
depends_on "go" => :build
|
|
depends_on "gox" => :build
|
|
depends_on "node@10" => :build
|
|
depends_on "yarn" => :build
|
|
|
|
def install
|
|
ENV.prepend_path "PATH", "#{ENV["GOPATH"]}/bin"
|
|
system "make", "bootstrap", "static-dist", "dev-ui"
|
|
bin.install "bin/vault"
|
|
end
|
|
|
|
plist_options manual: "vault server -dev"
|
|
|
|
def plist
|
|
<<~EOS
|
|
<?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">
|
|
<dict>
|
|
<key>KeepAlive</key>
|
|
<dict>
|
|
<key>SuccessfulExit</key>
|
|
<false/>
|
|
</dict>
|
|
<key>Label</key>
|
|
<string>#{plist_name}</string>
|
|
<key>ProgramArguments</key>
|
|
<array>
|
|
<string>#{opt_bin}/vault</string>
|
|
<string>server</string>
|
|
<string>-dev</string>
|
|
</array>
|
|
<key>RunAtLoad</key>
|
|
<true/>
|
|
<key>WorkingDirectory</key>
|
|
<string>#{var}</string>
|
|
<key>StandardErrorPath</key>
|
|
<string>#{var}/log/vault.log</string>
|
|
<key>StandardOutPath</key>
|
|
<string>#{var}/log/vault.log</string>
|
|
</dict>
|
|
</plist>
|
|
EOS
|
|
end
|
|
|
|
test do
|
|
port = free_port
|
|
ENV["VAULT_DEV_LISTEN_ADDRESS"] = "127.0.0.1:#{port}"
|
|
ENV["VAULT_ADDR"] = "http://127.0.0.1:#{port}"
|
|
|
|
pid = fork { exec bin/"vault", "server", "-dev" }
|
|
sleep 5
|
|
system bin/"vault", "status"
|
|
Process.kill("TERM", pid)
|
|
end
|
|
end
|