-
Notifications
You must be signed in to change notification settings - Fork 515
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Introduce env. variable NOTARY_AUTH for setting username & password
In case of automation it may not be possible to prompt the user for username and password. To provide a way to pass username and password we introduce the NOTARY_AUTH environment variable through which username and password can be passed. Username and password must be separated by ':' and base64 encoded. The following example shows how to set username and password: > export NOTARY_AUTH="$(echo -n "me:mysecretpassword" | base64)" Decoding: > echo $NOTARY_AUTH | base64 -d me:mysecretpassword Signed-off-by: Stefan Berger <stefanb@linux.vnet.ibm.com>
- Loading branch information
1 parent
fab4c67
commit 6b49e10
Showing
2 changed files
with
53 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters