diff --git a/Formula/mysql@5.6.rb b/Formula/mysql@5.6.rb
index 10c35547eca..e97a7cd639b 100644
--- a/Formula/mysql@5.6.rb
+++ b/Formula/mysql@5.6.rb
@@ -95,40 +95,42 @@ class MysqlAT56 < Formula
end
end
- def caveats; <<~EOS
- A "/etc/my.cnf" from another install may interfere with a Homebrew-built
- server starting up correctly.
+ def caveats
+ <<~EOS
+ A "/etc/my.cnf" from another install may interfere with a Homebrew-built
+ server starting up correctly.
- MySQL is configured to only allow connections from localhost by default
+ MySQL is configured to only allow connections from localhost by default
- To connect:
- mysql -uroot
- EOS
+ To connect:
+ mysql -uroot
+ EOS
end
plist_options :manual => "#{HOMEBREW_PREFIX}/opt/mysql@5.6/bin/mysql.server start"
- def plist; <<~EOS
-
-
-
-
- KeepAlive
-
- Label
- #{plist_name}
- ProgramArguments
-
- #{opt_bin}/mysqld_safe
- --datadir=#{datadir}
-
- RunAtLoad
-
- WorkingDirectory
- #{datadir}
-
-
- EOS
+ def plist
+ <<~EOS
+
+
+
+
+ KeepAlive
+
+ Label
+ #{plist_name}
+ ProgramArguments
+
+ #{opt_bin}/mysqld_safe
+ --datadir=#{datadir}
+
+ RunAtLoad
+
+ WorkingDirectory
+ #{datadir}
+
+
+ EOS
end
test do