Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 2 Sep 2018 14:06:54 +0000 (UTC)
From:      Dan Langille <dvl@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r478792 - in head/net-mgmt/librenms: . files
Message-ID:  <201809021406.w82E6sLK013473@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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@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';



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201809021406.w82E6sLK013473>