Skip to content

Commit

Permalink
Minor Readme updates
Browse files Browse the repository at this point in the history
Signed-off-by: Valentin Pichard <[email protected]>

Minor readme modifications
  • Loading branch information
Valentin Pichard committed Jul 18, 2016
1 parent a9baed6 commit 0540f28
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ Using svfs directly :
svfs --os-username=.. --os-password=.. ... myName /mountpoint &
```

With OSX after osxfuse, ruby and pkg installation :
With OSX after [osxfuse](https://github.com/osxfuse/osxfuse), ruby and last pkg installation :

```
mount_svfs myName /mountpoint -o username=..,password=..,tenant=..,region=..,container=..
Expand Down
2 changes: 1 addition & 1 deletion docs/FAQ.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,4 +60,4 @@ empty intermediate directories within the object path as well.

### Does it run on Mac OS X ?

Yes, pick the latest pkg, install it with ruby and osxfuse and there you go !
Yes, pick the latest pkg, install it with ruby and [osxfuse](https://github.com/osxfuse/osxfuse) and there you go !
11 changes: 10 additions & 1 deletion docs/HubiC.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,18 @@ process.
## Access your hubiC data

Using options given within the previous step, you can for instance mount your default
hubiC container with :
hubiC container depending on your system.

Using linux :
```
sudo mount -t svfs -o hubic_auth=<hubic_auth>,hubic_token=<hubic_token>,container=default hubic /mountpoint
```

Using OSX :
```
mount_svfs hubic /mountpoint -o hubic_auth=<hubic_auth>,hubic_token=<hubic_token>,container=default
```

You can access another's container data from the HubiC webapp using the following URL :

* `https://hubic.com/home/browser/#containerName/`
7 changes: 6 additions & 1 deletion docs/PCS.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ of the user you want to extract credentials for. Then
choose to download the *openrc* file. Source it and
enter your password when prompted.


### OVH API

Log into the OVH API with your customer account or using your
Expand All @@ -31,6 +30,12 @@ be available as environment variables, starting with prefix `OS_`.

You can use them with svfs like this :

Using linux :
```
sudo mount -t svfs -o username=$OS_USERNAME,password=$OS_PASSWORD,tenant=$OS_TENANT_NAME,region=$OS_REGION_NAME pcs /mountpoint
```

Using OSX :
```
mount_svfs pcs /mountpoint -o username=$OS_USERNAME,password=$OS_PASSWORD,tenant=$OS_TENANT_NAME,region=$OS_REGION_NAME
```

0 comments on commit 0540f28

Please sign in to comment.