aboutsummaryrefslogtreecommitdiff
path: root/UPDATING
diff options
context:
space:
mode:
authorKurt Jaeger <pi@FreeBSD.org>2020-03-04 19:47:53 +0000
committerKurt Jaeger <pi@FreeBSD.org>2020-03-04 19:47:53 +0000
commitbaee6b2d5e1190143630a3c3a88b276142bcd901 (patch)
tree757daa1bc238d0c5f13681c3cdeb3a930fa124c5 /UPDATING
parentfc84d9d97f8720718ed8abdbf705e9dfc989b872 (diff)
downloadports-baee6b2d5e1190143630a3c3a88b276142bcd901.tar.gz
ports-baee6b2d5e1190143630a3c3a88b276142bcd901.zip
net-im/prosody: refactor and move to lua 5.2
- Use Lua 5.2 and drop support for the dead LuaJIT. - Explicitly state all required configure options as the "freebsd" preset has some of them wrong. - Do not install the example certs as they clutter the config directory and nobody should ever use them. They can be recreated with prosodyctl if needed. - Remove the broken "daemonize" option from the rc script, handle all actions with "prosodyctl" instead. - Change data directory from /usr/local/var/lib/prosody to /var/db/prosody and include instructions in UPDATING - Install the prosody migrator - Use arc4random PR: 241619 Submitted by: thomas@beingboiled.info Reviewed by: lx (maintainer), Sascha Biberhofer <ports@skyforge.at> Approved by: lx (maintainer timeout)
Notes
Notes: svn path=/head/; revision=527796
Diffstat (limited to 'UPDATING')
-rw-r--r--UPDATING22
1 files changed, 22 insertions, 0 deletions
diff --git a/UPDATING b/UPDATING
index b2ad56ed64e2..50d627520639 100644
--- a/UPDATING
+++ b/UPDATING
@@ -148,6 +148,28 @@ you update your ports collection, before attempting any port upgrades.
default configuration, but if you have a custom configuration, they might not
be.
+20200210:
+ AFFECTS: users of net-im/prosody
+ AUTHOR: thomas@beingboiled.info
+
+ Prosody's pid file and data directory have moved to a new location.
+ If you are upgrading from a version with the pid file and data
+ directory in /usr/local/var/lib/prosody please perform these steps:
+
+ # stop Prosody
+ pkill -F /usr/local/var/lib/prosody/prosody.pid
+
+ # copy the data directory
+ cp -a /usr/local/var/lib/prosody /var/db/prosody
+ rm -f /var/db/prosody/prosody.pid
+
+ Make sure your prosody config has the following option set:
+
+ pidfile = "/var/run/prosody/prosody.pid"
+
+ Then start Prosody again. Everything should be working as before and
+ the /usr/local/var/lib/prosody directory can now be removed.
+
20200207:
AFFECTS: users of security/nss
AUTHOR: lwhsu@FreeBSD.org