diff options
author | Kai Knoblich <kai@FreeBSD.org> | 2019-09-30 22:55:03 +0800 |
---|---|---|
committer | Kai Knoblich <kai@FreeBSD.org> | 2019-09-30 22:55:03 +0800 |
commit | 24c244e70f76d84259e9c734c72448dd7e4c4a86 (patch) | |
tree | 46676c81b6d0d2f89045e69c79ec6bff4ed2a746 /UPDATING | |
parent | 0b2ebda569a091acd43d0626716c1e6b3a6e27c1 (diff) | |
download | freebsd-ports-gnome-24c244e70f76d84259e9c734c72448dd7e4c4a86.tar.gz freebsd-ports-gnome-24c244e70f76d84259e9c734c72448dd7e4c4a86.tar.zst freebsd-ports-gnome-24c244e70f76d84259e9c734c72448dd7e4c4a86.zip |
net-mgmt/netbox: Update to 2.6.5
* Introduce EXAMPLES option which installs a sample rc script to the example
location. Using the script will eliminate the need for
sysutils/py-supervisor for those who run NetBox as a system service. [1]
If there's a lot of interest it can also be installed in near future as
regular rc script.
* Consolidate keywords in pkg-message to avoid accidental deletion of these.
Notable changes since 2.5.13:
* Improved performance via Caching through Redis
* Support for Power Panels and Feeds
* Introduction of view-only permissions
* Ability to create custom links under the admin UI
* Support for Prometheus metrics
* Many other enhancements and bug fixes
https://github.com/netbox-community/netbox/blob/v2.6.5/CHANGELOG.md
Submitted by: Thomas Kurschel (via private email) [1]
Diffstat (limited to 'UPDATING')
-rw-r--r-- | UPDATING | 31 |
1 files changed, 31 insertions, 0 deletions
@@ -5,6 +5,37 @@ they are unavoidable. You should get into the habit of checking this file for changes each time you update your ports collection, before attempting any port upgrades. +20190930: + AFFECTS: users of NetBox + AUTHOR: kai@FreeBSD.org + + Since the 2.6 release a running Redis server instance is required for + caching objects to run. Also the following settings like below need to be + added (or modified) in the existing configuration.py: + + REDIS = { + 'HOST': 'localhost', + 'PORT': 6397, + 'PASSWORD': '' + 'DATABASE': 0, + 'CACHE_DATABASE': 1, + 'DEFAULT_TIMEOUT': 300, + 'SSL': False, + } + + Note that if you were using these settings in a prior release with + webhooks, the DATABASE setting remains the same but an additional + CACHE_DATABASE settings has been added with a default value of 1 to + support the caching backend. + + The DATABASE setting will be renamed in a future release of NetBox to + better relay the meaning of the setting. It is highly recommended to keep + the webhook and cache databases separate. Using the same database number + for both may result in webhook processing data being lost during cache + flushing events. + + Please also check the pkg-message and the changelogs for further info. + 20190927: AFFECTS: users of emulators/qemu-devel AUTHOR: bofh@FreeBSD.org |