Skip to content

Commit

Permalink
add docs for strip pass (#35)
Browse files Browse the repository at this point in the history
* add docs for strip pass

* add docs for strip pass
  • Loading branch information
rawdaGastan authored Oct 23, 2023
1 parent e22340c commit 73a25d3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,8 @@ Arguments:
Options:
-m, --meta <META> path to metadata file (flist)
-s, --store <STORE> store url in the format [xx-xx=]<url>. the range xx-xx is optional and used for sharding. the URL is per store type, please check docs for more information
--no-strip-password no_strip_password strips password from store url, otherwise password will be stored in the fl
and then shipped. Some stores like ZDB has a public namespace which means writing requires a password
-h, --help Print help
```

Expand Down
4 changes: 2 additions & 2 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,8 @@ struct PackOptions {
#[clap(short, long, action=ArgAction::Append)]
store: Vec<String>,

/// no_strip_password strips password from store url, otherwise password will be stored in the fl and then shipped
/// some stores like ZDB has a public namespace which means writing requires a password
/// no_strip_password strips password from store url, otherwise password will be stored in the fl and then shipped.
/// Some stores like ZDB has a public namespace which means writing requires a password
#[clap(long, default_value_t = false)]
no_strip_password: bool,

Expand Down

0 comments on commit 73a25d3

Please sign in to comment.