1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-24 04:33:24 +00:00

- Add entry for net-mgmt/nagios uid/gid changes (from dynamic -> static)

PR:		ports/111345
Submitted by:	Jarrod Sayers <jarrod at netleader.com.au> (maintainer)
This commit is contained in:
Rong-En Fan 2007-04-07 14:29:12 +00:00
parent 4c6bb71802
commit 48afa04bf0
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=189433

View File

@ -6,6 +6,23 @@ You should get into the habit of checking this file for changes each
time you update your ports collection, before attempting any port
upgrades.
20070407:
AFFECTS: users of net-mgmt/nagios
AUTHOR: jarrod@netleader.com.au
nagios now uses the registered uid/gid 181 for a fresh installation.
To switch to the new scheme, the following may help:
# /usr/local/etc/rc.d/nagios stop
Stopping nagios.
# find / -user nagios -exec chown 181 {} \;
# find / -group nagios -exec chgrp 181 {} \;
# pw usermod nagios -u 181
# pw groupmod nagios -g 181
# /usr/local/etc/rc.d/nagios start
Performing sanity check of nagios configuration: OK
Starting nagios.
20070405:
AFFECTS: users of print/ghostscript-*
AUTHOR: rafan@FreeBSD.org