Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 27 Dec 2018 09:50:56 +0000 (UTC)
From:      Tobias Kortkamp <tobik@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r488522 - in head/security/pwned-check: . files
Message-ID:  <201812270950.wBR9ouq2078654@repo.freebsd.org>

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



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