Merge pull request #558 from matthiasbeyer/libimagstore/configuration-fixup

Fix comment how config has to look
This commit is contained in:
Matthias Beyer 2016-07-17 00:59:22 +02:00 committed by GitHub
commit b0e6c00f22
1 changed files with 8 additions and 6 deletions

View File

@ -11,18 +11,20 @@ use toml::Value;
/// [store]
/// pre-create-hook-aspects = [ "misc", "encryption", "version-control"]
///
/// [[aspects.misc]]
/// [store.aspects.misc]
/// parallel = true
/// [[aspects.encryption]]
/// parallel = false
/// [[aspects.version-control]]
///
/// [store.aspects.encryption]
/// parallel = false
///
/// [[hooks.gnupg]]
/// [store.aspects.version-control]
/// parallel = false
///
/// [store.hooks.gnupg]
/// aspect = "encryption"
/// key = "0x123456789"
///
/// [[hooks.git]]
/// [store.hooks.git]
/// aspect = "version-control"
/// ```
///