From owner-cvs-all@FreeBSD.ORG Sun Jun 1 11:48:58 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id F3DF6106564A; Sun, 1 Jun 2008 11:48:57 +0000 (UTC) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 076F88FC1C; Sun, 1 Jun 2008 11:48:58 +0000 (UTC) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m51BmvUl018864; Sun, 1 Jun 2008 11:48:57 GMT (envelope-from rafan@repoman.freebsd.org) Received: (from rafan@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m51Bmv1m018863; Sun, 1 Jun 2008 11:48:57 GMT (envelope-from rafan) Message-Id: <200806011148.m51Bmv1m018863@repoman.freebsd.org> From: Rong-En Fan Date: Sun, 1 Jun 2008 11:48:57 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/security/sguil-server Makefile ports/security/sguil-server/files pkg-install.in X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 01 Jun 2008 11:48:58 -0000 rafan 2008-06-01 11:48:57 UTC FreeBSD ports repository Modified files: security/sguil-server Makefile security/sguil-server/files pkg-install.in Log: - From PR If a user opts out of the first part of the pkg-install script, but elects to interact with the second part of the script and decides to create new certs, the creation of the certs will fail silently if the certs directory does not exist. This is because the certs directory is created (if necessary) in the pre-install portion of the pkg-install script, but the certs are created in the post-install part of the script. This PR corrects this problem by moving the creation of the certs directory to the same subroutine that the certs are created in. PR: ports/123883 Submitted by: Paul Schmehl (maintainer) Revision Changes Path 1.7 +1 -1 ports/security/sguil-server/Makefile 1.2 +8 -8 ports/security/sguil-server/files/pkg-install.in