<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
</head>
<body text="#000000" bgcolor="#FFFFFF">
<p><br>
</p>
<br>
<div class="moz-cite-prefix">On 16/03/18 15:59, Greg Oliver wrote:<br>
</div>
<blockquote type="cite" cite="mid:CAF4tN+99rBDSG2eMMZ_0TUgDUWEV9x3gYXm=rberwP5SXDEMVA@mail.gmail.com">
<div dir="ltr"><br>
<div class="gmail_extra">
<div style="font-family:monospace,monospace" class="gmail_default">​Well that was short lived :)<br>
<br>
</div>
<div style="font-family:monospace,monospace" class="gmail_default">on the code I pulled,
<br>
<br>
[greg@yoga mythtv]$ grep -ri cmdrecfinished *<br>
mythtv/libs/libmythtv/mythsystemevent.cpp:    m_settings["EventCmdRecFinished"]          = // REC_FINISHED<br>
mythtv/programs/mythbackend/config_backend_general.xml:         value="EventCmdRecFinished" label="Recording finished"<br>
mythtv/programs/mythbackend/config_backend_general.xml:         help_text="EventCmdRecFinished"<br>
<br>
</div>
<div style="font-family:monospace,monospace" class="gmail_default">I have no clue how to match ​m_settings["EventCmdRecFinished"]          =<br>
<br>
:)<br>
<br>
</div>
<div style="font-family:monospace,monospace" class="gmail_default">​to something useful.  I am no programmer, but can usually read non-obfuscated (shout out to the perl monks :) code, but this I cannot follow..  oh well.  I guess I will chnage it to a user
 job and be done with it..​</div>
<br>
</div>
</div>
<br>
</blockquote>
Copy paste from about a dozen lines above in mythsystemevent.cpp:<br>
    // Event names are programmatically converted to settings names in<br>
    // EventNameToSetting().  For convenience of searching the code<br>
    // base, the event names are listed in comments.<br>
....<br>
    m_settings["EventCmdRecFinished"]          = // REC_FINISHED<br>
        tr("Recording finished");<br>
<br>
Has the execute bit / permissions been checked on the intermediate directories of your script? What is the output of something like:<br>
dir=/12TB/mythtv/; while [ "$dir" != "/" ]; do ls -ald $dir; dir=`dirname $dir`; done<br>
<br>
<br>
</body>
</html>