summaryrefslogtreecommitdiffstats
path: root/schemas
diff options
context:
space:
mode:
authorAlexander Sulfrian <alexander@sulfrian.net>2013-06-14 20:28:42 +0200
committerAlexander Sulfrian <alexander@sulfrian.net>2013-06-14 20:28:42 +0200
commitde0af523ce59bd1e4c53e10a873fcd961f8f2b30 (patch)
tree7457ea57f0c12d5f28521a80ba1dd0e2d46d4c36 /schemas
parentabd9d823bd46f13ff8553dddb9eabb31cbf0b2e0 (diff)
downloadbcfg2-de0af523ce59bd1e4c53e10a873fcd961f8f2b30.tar.gz
bcfg2-de0af523ce59bd1e4c53e10a873fcd961f8f2b30.tar.bz2
bcfg2-de0af523ce59bd1e4c53e10a873fcd961f8f2b30.zip
Client/Tools/Action: add shell attribute
Add an option to specify whether a command should be executed within a shell to enable flow control and other shell-specific syntax.
Diffstat (limited to 'schemas')
-rw-r--r--schemas/types.xsd12
1 files changed, 10 insertions, 2 deletions
diff --git a/schemas/types.xsd b/schemas/types.xsd
index 7bf46f4b7..4e3dfd70f 100644
--- a/schemas/types.xsd
+++ b/schemas/types.xsd
@@ -162,8 +162,16 @@
<xsd:attribute type='xsd:string' name='command' use='required'>
<xsd:annotation>
<xsd:documentation>
- The command to run. The command is executed within a shell,
- so flow control and other shell-specific things can be used.
+ The command to run.
+ </xsd:documentation>
+ </xsd:annotation>
+ </xsd:attribute>
+ <xsd:attribute type='xsd:boolean' name='shell'>
+ <xsd:annotation>
+ <xsd:documentation>
+ Whether the command string should be executeed within a shell.
+ If enabled flow control and other shell-specific things can
+ be used.
</xsd:documentation>
</xsd:annotation>
</xsd:attribute>