aboutsummaryrefslogtreecommitdiff
path: root/UPDATING
diff options
context:
space:
mode:
authorDan Langille <dvl@FreeBSD.org>2020-07-20 21:35:34 +0000
committerDan Langille <dvl@FreeBSD.org>2020-07-20 21:35:34 +0000
commitaab2a6b0ce2ffabad72ec7d9d5aaa2ea51432d4a (patch)
tree071c72a56c25846b085df708eef9e482fa676d29 /UPDATING
parent3c783e2b688a0177a95de8dc67685be9dea65076 (diff)
downloadports-aab2a6b0ce2ffabad72ec7d9d5aaa2ea51432d4a.tar.gz
ports-aab2a6b0ce2ffabad72ec7d9d5aaa2ea51432d4a.zip
Update to 1.65.1
This upgrade disables polling via cronjob. You must now use the Dispatcher. See UPDATING
Notes
Notes: svn path=/head/; revision=542675
Diffstat (limited to 'UPDATING')
-rw-r--r--UPDATING33
1 files changed, 32 insertions, 1 deletions
diff --git a/UPDATING b/UPDATING
index fe440a5c5f21..3fee8be08c68 100644
--- a/UPDATING
+++ b/UPDATING
@@ -6,6 +6,37 @@ You should get into the habit of checking this file for changes each time
you update your ports collection, before attempting any port upgrades.
+20200720:
+ AFFECTS: users of net-mgmt/librenms
+ AUTHOR: dvl@FreeBSD.org
+
+ As mentioned previously in 20200503 polling via cronjob has been removed as of
+ release 1.63 - see
+ https://community.librenms.org/t/dropping-support-for-php-7-1-and-python-2/11851
+
+ A database upgrade is required:
+
+ cd /usr/local/www/librenms
+ sudo ./lnms migrate
+
+ You must migrate to the Dispatch Service:
+ https://docs.librenms.org/Extensions/Dispatcher-Service/
+
+ You may need to add LIBRENMS_USER to .env (see .env.example).
+
+ These steps should get you running:
+ * comment out the crontab entries listed above under PYPOLLER
+ * populate %%WWWDIR%%/.env with:
+ * APP_KEY - see farther below for how to create
+ * NODE_ID - see just below for how to create
+ * DB_HOST
+ * DB_DATABASE
+ * DB_USERNAME
+ * DB_PASSWORD
+ * you can create a NODE_ID with: php -r 'echo uniqid() . "\n";'
+ * sysrc librenms_enable="YES"
+ * service librenms start
+
20200719:
AFFECTS: users of emulators/qemu
AUTHOR: bofh@FreeBSD.org
@@ -190,7 +221,7 @@ you update your ports collection, before attempting any port upgrades.
AUTHOR: dvl@FreeBSD.org
Polling via cronjob is deprecated as of release 1.63
- see see https://community.librenms.org/t/dropping-support-for-php-7-1-and-python-2/11851
+ Please see https://community.librenms.org/t/dropping-support-for-php-7-1-and-python-2/11851
Please migrate to the Dispatch Service:
https://docs.librenms.org/Extensions/Dispatcher-Service/