From owner-dev-commits-ports-main@freebsd.org Mon May 17 14:58:17 2021 Return-Path: Delivered-To: dev-commits-ports-main@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id BE63764AD88; Mon, 17 May 2021 14:58:17 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4FkMh9542sz3jC0; Mon, 17 May 2021 14:58:17 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org (gitrepo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:5]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 962C35EF5; Mon, 17 May 2021 14:58:17 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org ([127.0.1.44]) by gitrepo.freebsd.org (8.16.1/8.16.1) with ESMTP id 14HEwHb0045303; Mon, 17 May 2021 14:58:17 GMT (envelope-from git@gitrepo.freebsd.org) Received: (from git@localhost) by gitrepo.freebsd.org (8.16.1/8.16.1/Submit) id 14HEwHYo045302; Mon, 17 May 2021 14:58:17 GMT (envelope-from git) Date: Mon, 17 May 2021 14:58:17 GMT Message-Id: <202105171458.14HEwHYo045302@gitrepo.freebsd.org> To: ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org From: Mateusz Piotrowski <0mp@FreeBSD.org> Subject: git: fde71f1df237 - main - ansible.mk: Define ANSIBLE_ETCDIR MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Git-Committer: 0mp X-Git-Repository: ports X-Git-Refname: refs/heads/main X-Git-Reftype: branch X-Git-Commit: fde71f1df2371b72c1c03b9d84f3e7abbe37c1ab Auto-Submitted: auto-generated X-BeenThere: dev-commits-ports-main@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: Commits to the main branch of the FreeBSD ports repository List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 17 May 2021 14:58:17 -0000 The branch main has been updated by 0mp: URL: https://cgit.FreeBSD.org/ports/commit/?id=fde71f1df2371b72c1c03b9d84f3e7abbe37c1ab commit fde71f1df2371b72c1c03b9d84f3e7abbe37c1ab Author: Mateusz Piotrowski <0mp@FreeBSD.org> AuthorDate: 2021-05-17 14:15:08 +0000 Commit: Mateusz Piotrowski <0mp@FreeBSD.org> CommitDate: 2021-05-17 14:58:16 +0000 ansible.mk: Define ANSIBLE_ETCDIR It is used in many Ansible ports. Let's have it defined in one place so that it is easier to track its use. --- Mk/Uses/ansible.mk | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Mk/Uses/ansible.mk b/Mk/Uses/ansible.mk index f4dd11b3e587..06001312c424 100644 --- a/Mk/Uses/ansible.mk +++ b/Mk/Uses/ansible.mk @@ -21,6 +21,7 @@ # # ANSIBLE_DATADIR - Path to the root of the directory structure where all # Ansible's modules and plugins are stored. +# ANSIBLE_ETCDIR - Path to the Ansible etc directory. # ANSIBLE_PLUGINS_PREFIX # - Path to the "plugins" directory # within ${ANSIBLE_DATADIR}. @@ -58,6 +59,7 @@ ANSIBLE_DOC_CMD?= ${LOCALBASE}/bin/ansible-doc ANSIBLE_RUN_DEPENDS?= ${ANSIBLE_CMD}:sysutils/ansible@${PY_FLAVOR} ANSIBLE_DATADIR?= ${PREFIX}/share/${PYTHON_PKGNAMEPREFIX}ansible +ANSIBLE_ETCDIR?= ${PREFIX}/etc/ansible ANSIBLE_PLUGINS_PREFIX?= ${ANSIBLE_DATADIR}/plugins .if ${ansible_ARGS} == "module" ANSIBLE_MODULESDIR?= ${ANSIBLE_PLUGINS_PREFIX}/modules