mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
allow env variable override of creds file
This is important because there is an integration test, test_git, that require an ssh key to clone a privileged github repo.
This commit is contained in:
parent
fed7cea795
commit
1b2d17b844
1 changed files with 1 additions and 1 deletions
|
@ -6,7 +6,7 @@ ifndef CLOUD_RESOURCE_PREFIX
|
||||||
CLOUD_RESOURCE_PREFIX := $(shell python -c "import string,random; print 'ansible-testing-' + ''.join(random.choice(string.ascii_letters + string.digits) for _ in xrange(8));")
|
CLOUD_RESOURCE_PREFIX := $(shell python -c "import string,random; print 'ansible-testing-' + ''.join(random.choice(string.ascii_letters + string.digits) for _ in xrange(8));")
|
||||||
endif
|
endif
|
||||||
|
|
||||||
CREDENTIALS_FILE = credentials.yml
|
CREDENTIALS_FILE ?= credentials.yml
|
||||||
# If credentials.yml exists, use it
|
# If credentials.yml exists, use it
|
||||||
ifneq ("$(wildcard $(CREDENTIALS_FILE))","")
|
ifneq ("$(wildcard $(CREDENTIALS_FILE))","")
|
||||||
CREDENTIALS_ARG = -e @$(CREDENTIALS_FILE)
|
CREDENTIALS_ARG = -e @$(CREDENTIALS_FILE)
|
||||||
|
|
Loading…
Reference in a new issue