Update mcollective.init according to OSCI-855
[packages/precise/mcollective.git] / website / messages / PLMC17.md
1 ---
2 layout: default
3 title: Message detail for PLMC17
4 toc: false
5 ---
6
7 Example Message
8 ---------------
9
10     'flase' does not look like a boolean value
11
12 Additional Information
13 ----------------------
14
15 When MCollective receives an argument from the command line like force=true it consults the DDL file to determine the desired type of this parameter, it then tries to convert the input string into the correct boolean value.
16
17 This error indicates the input you provided could not be converted into the desired boolean format.  It wil accept "true", "t", "yes", "y" and "1" as being true.  It will accept "false", "f", "no", "n", "0" as being false.
18
19 You'll usually see this when using the 'mco rpc' command to interact with an agent.  This is usually a fatal error, the request will not be sent if it does not validate against the DDL.