aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorchdiza2015-04-11 12:13:09 -0400
committerMike McQuaid2015-04-12 21:35:51 -0700
commitd15e25d3bd26598c4644a5f8d395d89afa91fc02 (patch)
tree32b91a81a9e2477f6b12f918719117bbafa210dc /Library
parentaffd66ae26283600ebfcc5f0649cf118e0c13e96 (diff)
downloadhomebrew-d15e25d3bd26598c4644a5f8d395d89afa91fc02.tar.bz2
gpg-agent: Remove needless launchd plist
Closes #38554. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/gpg-agent.rb29
1 files changed, 2 insertions, 27 deletions
diff --git a/Library/Formula/gpg-agent.rb b/Library/Formula/gpg-agent.rb
index 517b465a9..78336ced0 100644
--- a/Library/Formula/gpg-agent.rb
+++ b/Library/Formula/gpg-agent.rb
@@ -34,8 +34,8 @@ class GpgAgent < Formula
end
def caveats; <<-EOS.undent
- Remember to set a graphical pinentry program (such as pinentry-mac) in your
- ~/.gnupg/gpg-agent.conf if you configure launchd to start gpg-agent at login.
+ Remember to add "use-standard-socket" to your ~/.gnupg/gpg-agent.conf
+ file.
EOS
end
@@ -43,31 +43,6 @@ class GpgAgent < Formula
system "#{bin}/gpg-agent", "--help"
end
- def plist; <<-EOS.undent
- <?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>Label</key>
- <string>#{plist_name}</string>
- <key>ProgramArguments</key>
- <array>
- <string>/bin/sh</string>
- <string>-c</string>
- <string>#{opt_prefix}/bin/gpg-agent -c --daemon | /bin/launchctl</string>
- </array>
- <key>RunAtLoad</key>
- <true/>
- <key>StandardErrorPath</key>
- <string>/dev/null</string>
- <key>StandardOutPath</key>
- <string>/dev/null</string>
- <key>ServiceDescription</key>
- <string>Run gpg-agent at login</string>
- </dict>
- </plist>
- EOS
- end
end
__END__