From 59030c178505438ccb361f45b204c2a8f5ef98f8 Mon Sep 17 00:00:00 2001 From: Jay Sparks Date: Tue, 26 Sep 2023 11:03:40 -0500 Subject: [PATCH] replace deprecated plist_options with Homebrew::Service --- Formula/apm-server-full.rb | 2 +- Formula/apm-server-oss.rb | 2 +- Formula/auditbeat-full.rb | 2 +- Formula/auditbeat-oss.rb | 2 +- Formula/elasticsearch-full.rb | 2 +- Formula/filebeat-full.rb | 2 +- Formula/filebeat-oss.rb | 2 +- Formula/heartbeat-full.rb | 2 +- Formula/heartbeat-oss.rb | 2 +- Formula/kibana-full.rb | 2 +- Formula/logstash-full.rb | 2 +- Formula/logstash-oss.rb | 2 +- Formula/metricbeat-full.rb | 2 +- Formula/metricbeat-oss.rb | 2 +- Formula/packetbeat-full.rb | 2 +- Formula/packetbeat-oss.rb | 2 +- 16 files changed, 16 insertions(+), 16 deletions(-) diff --git a/Formula/apm-server-full.rb b/Formula/apm-server-full.rb index cdf6a4f..118cdac 100644 --- a/Formula/apm-server-full.rb +++ b/Formula/apm-server-full.rb @@ -29,7 +29,7 @@ def post_install (var/"log/apm-server").mkpath end - plist_options :manual => "apm-server" + @plist_manual = "apm-server" def plist; <<~EOS diff --git a/Formula/apm-server-oss.rb b/Formula/apm-server-oss.rb index 4115087..f7f7dad 100644 --- a/Formula/apm-server-oss.rb +++ b/Formula/apm-server-oss.rb @@ -29,7 +29,7 @@ def post_install (var/"log/apm-server").mkpath end - plist_options :manual => "apm-server" + @plist_manual = "apm-server" def plist; <<~EOS diff --git a/Formula/auditbeat-full.rb b/Formula/auditbeat-full.rb index 549a49a..0408a46 100644 --- a/Formula/auditbeat-full.rb +++ b/Formula/auditbeat-full.rb @@ -29,7 +29,7 @@ def post_install (var/"log/auditbeat").mkpath end - plist_options :manual => "auditbeat" + @plist_manual = "auditbeat" def plist; <<~EOS diff --git a/Formula/auditbeat-oss.rb b/Formula/auditbeat-oss.rb index b57e8db..c67e299 100644 --- a/Formula/auditbeat-oss.rb +++ b/Formula/auditbeat-oss.rb @@ -29,7 +29,7 @@ def post_install (var/"log/auditbeat").mkpath end - plist_options :manual => "auditbeat" + @plist_manual = "auditbeat" def plist; <<~EOS diff --git a/Formula/elasticsearch-full.rb b/Formula/elasticsearch-full.rb index 52f9a4f..e61235f 100644 --- a/Formula/elasticsearch-full.rb +++ b/Formula/elasticsearch-full.rb @@ -65,7 +65,7 @@ def caveats s end - plist_options :manual => "elasticsearch" + @plist_manual = "elasticsearch" def plist <<~EOS diff --git a/Formula/filebeat-full.rb b/Formula/filebeat-full.rb index 4506c99..0c28ee9 100644 --- a/Formula/filebeat-full.rb +++ b/Formula/filebeat-full.rb @@ -24,7 +24,7 @@ def install EOS end - plist_options :manual => "filebeat" + @plist_manual = "filebeat" def plist; <<~EOS diff --git a/Formula/filebeat-oss.rb b/Formula/filebeat-oss.rb index f47e486..28d287b 100644 --- a/Formula/filebeat-oss.rb +++ b/Formula/filebeat-oss.rb @@ -24,7 +24,7 @@ def install EOS end - plist_options :manual => "filebeat" + @plist_manual = "filebeat" def plist; <<~EOS diff --git a/Formula/heartbeat-full.rb b/Formula/heartbeat-full.rb index da5e5bd..2ccb641 100644 --- a/Formula/heartbeat-full.rb +++ b/Formula/heartbeat-full.rb @@ -29,7 +29,7 @@ def post_install (var/"log/heartbeat").mkpath end - plist_options :manual => "heartbeat" + @plist_manual = "heartbeat" def plist; <<~EOS diff --git a/Formula/heartbeat-oss.rb b/Formula/heartbeat-oss.rb index 478429d..bd18c3c 100644 --- a/Formula/heartbeat-oss.rb +++ b/Formula/heartbeat-oss.rb @@ -29,7 +29,7 @@ def post_install (var/"log/heartbeat").mkpath end - plist_options :manual => "heartbeat" + @plist_manual = "heartbeat" def plist; <<~EOS diff --git a/Formula/kibana-full.rb b/Formula/kibana-full.rb index f6433b1..62ee7c4 100644 --- a/Formula/kibana-full.rb +++ b/Formula/kibana-full.rb @@ -47,7 +47,7 @@ def caveats; <<~EOS EOS end - plist_options :manual => "kibana" + @plist_manual = "kibana" def plist; <<~EOS diff --git a/Formula/logstash-full.rb b/Formula/logstash-full.rb index 157d345..a7e7d42 100644 --- a/Formula/logstash-full.rb +++ b/Formula/logstash-full.rb @@ -40,7 +40,7 @@ def caveats; <<~EOS EOS end - plist_options :manual => "logstash" + @plist_manual = "logstash" def plist <<~EOS diff --git a/Formula/logstash-oss.rb b/Formula/logstash-oss.rb index ca1b5d9..10acd89 100644 --- a/Formula/logstash-oss.rb +++ b/Formula/logstash-oss.rb @@ -40,7 +40,7 @@ def caveats; <<~EOS EOS end - plist_options :manual => "logstash" + @plist_manual = "logstash" def plist <<~EOS diff --git a/Formula/metricbeat-full.rb b/Formula/metricbeat-full.rb index 34c36b8..76a0e61 100644 --- a/Formula/metricbeat-full.rb +++ b/Formula/metricbeat-full.rb @@ -24,7 +24,7 @@ def install EOS end - plist_options :manual => "metricbeat" + @plist_manual = "metricbeat" def plist; <<~EOS diff --git a/Formula/metricbeat-oss.rb b/Formula/metricbeat-oss.rb index c6e814e..986b0af 100644 --- a/Formula/metricbeat-oss.rb +++ b/Formula/metricbeat-oss.rb @@ -24,7 +24,7 @@ def install EOS end - plist_options :manual => "metricbeat" + @plist_manual = "metricbeat" def plist; <<~EOS diff --git a/Formula/packetbeat-full.rb b/Formula/packetbeat-full.rb index 6c90177..10f89b5 100644 --- a/Formula/packetbeat-full.rb +++ b/Formula/packetbeat-full.rb @@ -24,7 +24,7 @@ def install EOS end - plist_options :manual => "packetbeat" + @plist_manual = "packetbeat" def plist; <<~EOS diff --git a/Formula/packetbeat-oss.rb b/Formula/packetbeat-oss.rb index 4455ae9..081d6e2 100644 --- a/Formula/packetbeat-oss.rb +++ b/Formula/packetbeat-oss.rb @@ -24,7 +24,7 @@ def install EOS end - plist_options :manual => "packetbeat" + @plist_manual = "packetbeat" def plist; <<~EOS