forked from opnsense/ports
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Taken from: HardenedBSD
- Loading branch information
Showing
4 changed files
with
40 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,6 +5,29 @@ 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. | ||
|
||
20181222: | ||
AFFECTS: users of net/ntopng | ||
AUTHOR: [email protected] | ||
|
||
Since ntopng 3.7, for security reasons, the default setting for | ||
the data directory has been changed to "/var/db/ntopng", and the | ||
default user has been changed to "ntopng". This new directory is | ||
created automatically by the port/package with correct permissions. | ||
|
||
In order to maintain backward compatibility, if you are already | ||
using "/var/tmp/ntopng" as data directory, ntopng keeps using that | ||
folder, owned by "nobody". This said, using the old defaults is not | ||
recommended and a manual action is required in order to migrate to | ||
the new settings, unless you are already using a custom directory: | ||
|
||
# service ntopng stop | ||
# mv /var/tmp/ntopng/* /var/db/ntopng/ | ||
# chown -R ntopng:ntopng /var/db/ntopng | ||
# service ntopng start | ||
|
||
Please check hte upstream FAQ for reference: | ||
https://www.ntop.org/support/faq/migrate-the-data-directory-in-ntopng/ | ||
|
||
20181218: | ||
AFFECTS: users of misc/openhab2 | ||
AUTHOR: [email protected] | ||
|