You are here

function _hosting_backend_invoke in Hostmaster (Aegir) 6

Deprecated

this is not used or called from anywhere

Related topics

File

modules/hosting/hosting.queues.inc, line 198
This file defines an API for defining new queues.

Code

function _hosting_backend_invoke($cmd, $task) {
  $proc = _drush_proc_open($cmd, FALSE);
  if ($proc['output']) {
    $values = drush_backend_parse_output($proc['output'], FALSE);
  }
  return FALSE;
}