From 45b67b9604934e4fa9b49406f42aafc2b1ba730f Mon Sep 17 00:00:00 2001 From: Shola Anozie Date: Sun, 9 Sep 2018 22:27:51 -0500 Subject: [PATCH] #691: Made instructions for creating password file more obvious. --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index ef35849..3c57fe3 100644 --- a/README.md +++ b/README.md @@ -79,11 +79,11 @@ The default location for the s3fs password file can be created: * using a .passwd-s3fs file in the users home directory (i.e. ~/.passwd-s3fs) * using the system-wide /etc/passwd-s3fs file -Enter your S3 identity and credential in a file `~/.passwd-s3fs` and set +Enter your credentials in a file `~/.passwd-s3fs` and set owner-only permissions: ``` -echo MYIDENTITY:MYCREDENTIAL > ~/.passwd-s3fs +echo ACCESS_KEY_ID:SECRET_ACCESS_KEY > ~/.passwd-s3fs chmod 600 ~/.passwd-s3fs ``` @@ -131,7 +131,7 @@ The Service Instance ID is only required when using the `-o create_bucket` optio Note: You may also want to create the global credential file first ``` -echo MYIDENTITY:MYCREDENTIAL > /etc/passwd-s3fs +echo ACCESS_KEY_ID:SECRET_ACCESS_KEY > /etc/passwd-s3fs chmod 600 /etc/passwd-s3fs ```