svn commit: r478792 - in head/net-mgmt/librenms: . files

Dan Langille dvl at FreeBSD.org
Sun Sep 2 14:06:55 UTC 2018


Author: dvl
Date: Sun Sep  2 14:06:54 2018
New Revision: 478792
URL: https://svnweb.freebsd.org/changeset/ports/478792

Log:
  Correct paths for nmap and mtr in patch for includes/defaults.inc.php
  Correct user in patch for .env.example
  
  PR:		231089
  Submitted by:	Dries Michiels <driesm.michiels at gmail.com>

Modified:
  head/net-mgmt/librenms/Makefile
  head/net-mgmt/librenms/files/patch-.env.example
  head/net-mgmt/librenms/files/patch-includes_defaults.inc.php

Modified: head/net-mgmt/librenms/Makefile
==============================================================================
--- head/net-mgmt/librenms/Makefile	Sun Sep  2 14:05:48 2018	(r478791)
+++ head/net-mgmt/librenms/Makefile	Sun Sep  2 14:06:54 2018	(r478792)
@@ -3,6 +3,7 @@
 
 PORTNAME=	librenms
 PORTVERSION=	1.43
+PORTREVISION=	1
 # RELEASE_TIMESTAMP is used for a patch inside the vendor code
 # it represents the release date via: git show --pretty='%H|%ct' -s 1.42.01
 # It sits here so you remember to update it with each release

Modified: head/net-mgmt/librenms/files/patch-.env.example
==============================================================================
--- head/net-mgmt/librenms/files/patch-.env.example	Sun Sep  2 14:05:48 2018	(r478791)
+++ head/net-mgmt/librenms/files/patch-.env.example	Sun Sep  2 14:06:54 2018	(r478792)
@@ -15,5 +15,5 @@
  #APP_URL=
 +NODE_ID=1
 +DB_PORT=3306
-+LIBRENMS_USER=librenms
++LIBRENMS_USER=www
 +

Modified: head/net-mgmt/librenms/files/patch-includes_defaults.inc.php
==============================================================================
--- head/net-mgmt/librenms/files/patch-includes_defaults.inc.php	Sun Sep  2 14:05:48 2018	(r478791)
+++ head/net-mgmt/librenms/files/patch-includes_defaults.inc.php	Sun Sep  2 14:06:54 2018	(r478792)
@@ -22,8 +22,8 @@
 -$config['dot']            = '/usr/bin/dot';
 -$config['sfdp']           = '/usr/bin/sfdp';
 +$config['ping']           = '/sbin/ping';
-+$config['mtr']            = '/usr/local/bin/mtr';
-+$config['nmap']           = '/usr/localbin/nmap';
++$config['mtr']            = '/usr/local/sbin/mtr';
++$config['nmap']           = '/usr/local/bin/nmap';
 +$config['nagios_plugins'] = '/usr/local/libexec/nagios';
 +$config['ipmitool']       = '/usr/local/bin/ipmitool';
 +$config['virsh']          = '/usr/local/bin/virsh';


More information about the svn-ports-head mailing list