Licenses: Updated the list of licenses and added a PDF containing all license texts
[check_mk.git] / .werks / 2986
blob28535732176a472bcf19fe38bc528343e8f9f299
1 Title: Event Console: Text elements of events are now correctly quoted in shell scripts
2 Level: 1
3 Component: ec
4 Compatible: compat
5 Version: 1.2.7i4
6 Date: 1454069066
7 Class: fix
9 Text elements (message, comment, contact, etc.) of an event may contain <i>'</i> and <i>"</i>.
10 The previous Event Console had troubles evaluating these event. Some shell scripts even got stuck..
12 For example: <tt>TEXT=my"text</tt><br>
13 Shell script: <tt>echo $TEXT$ > /tmp/mylog</tt><br>
14 The actual command looks like <tt>echo my"text > /tmp/mylog</tt> -&gt; broken command.