720cbb8f57
Closes #40417. Signed-off-by: Chongyu Zhu <i@lembacon.com>
21 lines
733 B
Ruby
21 lines
733 B
Ruby
class NifiRegistry < Formula
|
|
desc "Centralized storage & management of NiFi/MiNiFi shared resources"
|
|
homepage "https://nifi.apache.org/registry"
|
|
url "https://www.apache.org/dyn/closer.lua?path=/nifi/nifi-registry/nifi-registry-0.4.0/nifi-registry-0.4.0-bin.tar.gz"
|
|
sha256 "7f19b19ba59ec0a9cc3428cab6c40e098143587bb23a837a6749a3b0b9e6167f"
|
|
|
|
bottle :unneeded
|
|
|
|
def install
|
|
libexec.install Dir["*"]
|
|
rm Dir[libexec/"bin/*.bat"]
|
|
|
|
bin.install libexec/"bin/nifi-registry.sh" => "nifi-registry"
|
|
bin.env_script_all_files libexec/"bin/", :NIFI_REGISTRY_HOME => libexec
|
|
end
|
|
|
|
test do
|
|
output = shell_output("#{bin}/nifi-registry status")
|
|
assert_match "Apache NiFi Registry is not running", output
|
|
end
|
|
end
|