svn commit: r488522 - in head/security/pwned-check: . files

Tobias Kortkamp tobik at FreeBSD.org
Thu Dec 27 09:50:57 UTC 2018


Author: tobik
Date: Thu Dec 27 09:50:56 2018
New Revision: 488522
URL: https://svnweb.freebsd.org/changeset/ports/488522

Log:
  security/pwned-check: Remove spaces from sample config file
  
  It contains unnecessary spaces, which results in the following error
  messages on command execution.
  
  $ pwned-check
  /usr/local/etc/pwned-check.conf: /var/db/pwned-check: Permission denied
  /usr/local/etc/pwned-check.conf: https://downloads.pwnedpasswords.com/passwords: not found
  
  PR:		228635
  Submitted by:	Hiroki Tagato <tagattie at yandex.com>
  Approved by:	se (maintainer timeout, ~7 months)

Modified:
  head/security/pwned-check/Makefile
  head/security/pwned-check/files/pwned-check.conf.sample

Modified: head/security/pwned-check/Makefile
==============================================================================
--- head/security/pwned-check/Makefile	Thu Dec 27 09:46:44 2018	(r488521)
+++ head/security/pwned-check/Makefile	Thu Dec 27 09:50:56 2018	(r488522)
@@ -3,6 +3,7 @@
 
 PORTNAME=	pwned-check
 PORTVERSION=	2.2
+PORTREVISION=	1
 PORTEPOCH=	1
 CATEGORIES=	security
 MASTER_SITES=	#

Modified: head/security/pwned-check/files/pwned-check.conf.sample
==============================================================================
--- head/security/pwned-check/files/pwned-check.conf.sample	Thu Dec 27 09:46:44 2018	(r488521)
+++ head/security/pwned-check/files/pwned-check.conf.sample	Thu Dec 27 09:50:56 2018	(r488522)
@@ -1,2 +1,2 @@
-DBDIR=		/var/db/pwned-check
-URLBASE=	https://downloads.pwnedpasswords.com/passwords
+DBDIR=/var/db/pwned-check
+URLBASE=https://downloads.pwnedpasswords.com/passwords


More information about the svn-ports-all mailing list