diff options
author | Peter Pentchev <roam@FreeBSD.org> | 2003-09-10 09:41:33 +0000 |
---|---|---|
committer | Peter Pentchev <roam@FreeBSD.org> | 2003-09-10 09:41:33 +0000 |
commit | d7dea455497cde96e629410063832756e3ab9a32 (patch) | |
tree | 175b9834cb392916f89d52fad1222bf033a5d810 /mail/vpopmail/files/patch-Makefile.in | |
parent | Add ruby-criteria, a Ruby module for SQL query abstraction, and (diff) |
Update to 5.3.27, USE_MYSQL, de-quote COMMENT, update the knobs info,
and other assorted fixes, mostly from Alex's PR.
PR: 56462
Submitted by: Alex Dupre <sysadmin@alexdupre.com>
Ob-woohoo: run-time configuration of default-domain and MySQL info;
at last it is possible to build a single package for
deploying on multiple servers!
Diffstat (limited to 'mail/vpopmail/files/patch-Makefile.in')
-rw-r--r-- | mail/vpopmail/files/patch-Makefile.in | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/mail/vpopmail/files/patch-Makefile.in b/mail/vpopmail/files/patch-Makefile.in new file mode 100644 index 000000000000..52cd7794c969 --- /dev/null +++ b/mail/vpopmail/files/patch-Makefile.in @@ -0,0 +1,14 @@ +--- Makefile.in.orig Thu Sep 4 23:45:08 2003 ++++ Makefile.in Thu Sep 4 23:46:17 2003 +@@ -705,10 +705,7 @@ + + if test "@USE_MYSQL@" = "1"; then \ + if test ! -r $(MYSQLCONF); then \ +- echo "# MySQL settings, line 1 is config for read-only," > $(MYSQLCONF); \ +- echo "# line 2 is config for update. Settings for each" >> $(MYSQLCONF); \ +- echo "# line: server|port|user|password|database" >> $(MYSQLCONF); \ +- echo "localhost|0|root|secret|vpopmail" >> $(MYSQLCONF); \ ++ touch $(MYSQLCONF); \ + fi ; \ + chown @vpopuser@ $(MYSQLCONF) ; \ + chgrp @vpopgroup@ $(MYSQLCONF) ; \ |