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

View file

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