aboutsummaryrefslogtreecommitdiff
path: root/mod/options.cli
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2018-07-24 00:16:49 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2018-07-27 14:33:01 +0300
commitdfa77ad7a2b7bbbd5ca836bbea4050dc524ff220 (patch)
treed9e7e5d72b7acfcebae358a1e215cb3c5171e63e /mod/options.cli
parent7407647bf6c73c1b128749ed788d53b5f174b4be (diff)
Add brep-submit script
Diffstat (limited to 'mod/options.cli')
-rw-r--r--mod/options.cli17
1 files changed, 11 insertions, 6 deletions
diff --git a/mod/options.cli b/mod/options.cli
index 66f19b1..f939b52 100644
--- a/mod/options.cli
+++ b/mod/options.cli
@@ -643,14 +643,19 @@ namespace brep
//
string sha256sum;
- // Simulate submission. Tells the submission handler not to publish the
- // package but to respond as if it does.
+ // Submission simulation. The presence of this parameter instructs the
+ // submission service to simulate various outcomes of the submission
+ // process without actually performing any externally visible actions
+ // (e.g., publishing the package, notifying the submitter, etc).
//
- // Note that the package submission email (see submit-email
- // configuration option for details) is not sent for the simulated
- // submission.
+ // Pre-defined simulation outcome values are 'internal-error-text',
+ // 'internal-error-html', 'duplicate-archive', and 'success'. The
+ // handler program may recognize additional outcomes.
//
- bool simulate;
+ // Note that the package submission email (see submit-email for details)
+ // is not sent for the simulated submissions.
+ //
+ string simulate;
};
}
}