From 869c5587cbbeae2c25f95d68f405e612e5db3a70 Mon Sep 17 00:00:00 2001 From: Tom Proctor Date: Wed, 6 Sep 2023 10:23:49 +0100 Subject: [PATCH] docs: Use fixed date format in quick start (#73) --- README.md | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 02270f7..b42a709 100644 --- a/README.md +++ b/README.md @@ -624,9 +624,7 @@ print("v1:" + base64.b64encode(signature)) ``` # After cloning the repo, generate fake certs, a test binary, and install the tools. -make test -make dev -make tools +make test dev tools # In one shell window, run Vault with the plugin available in the catalog. export CF_HOME=$(pwd) @@ -639,7 +637,7 @@ mock-cf-server export CF_HOME=$(pwd) export VAULT_ADDR=http://localhost:8200 export VAULT_TOKEN=root -export MOCK_CF_SERVER_ADDR='something' # ex. http://127.0.0.1:32937 +export MOCK_CF_SERVER_ADDR='something' # ex. http://127.0.0.1:32937, from mock-cf-server's log line: "plain server running at http://127.0.0.1:32937" vault auth enable vault-plugin-auth-cf @@ -662,7 +660,7 @@ vault write auth/vault-plugin-auth-cf/roles/test-role \ export CF_INSTANCE_CERT=$CF_HOME/testdata/fake-certificates/instance.crt export CF_INSTANCE_KEY=$CF_HOME/testdata/fake-certificates/instance.key -export SIGNING_TIME=$(date -u) +export SIGNING_TIME=$(date -u +"%a %b %d %H:%M:%S %Z %Y") export ROLE='test-role' vault write auth/vault-plugin-auth-cf/login \ role=$ROLE \