summaryrefslogtreecommitdiffstats
path: root/schemas/types.xsd
diff options
context:
space:
mode:
authorChris St. Pierre <chris.a.st.pierre@gmail.com>2013-06-17 04:22:13 -0700
committerChris St. Pierre <chris.a.st.pierre@gmail.com>2013-06-17 04:22:13 -0700
commitdbc0e1182590eee2711cf537f20ab262418837d9 (patch)
treed331ac28972774c2790b352fb6e8b193a5b4c7d5 /schemas/types.xsd
parentef261545acbcc9ab0872383c5b66efaf53bdd329 (diff)
parentde0af523ce59bd1e4c53e10a873fcd961f8f2b30 (diff)
downloadbcfg2-dbc0e1182590eee2711cf537f20ab262418837d9.tar.gz
bcfg2-dbc0e1182590eee2711cf537f20ab262418837d9.tar.bz2
bcfg2-dbc0e1182590eee2711cf537f20ab262418837d9.zip
Merge pull request #97 from AlexanderS/action-add-shell-flag
Client/Tools/Action: add shell attribute
Diffstat (limited to 'schemas/types.xsd')
-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>