You are here

function takeover_drush_command in MongoDB 8

File

takeover/takeover.drush.inc, line 5

Code

function takeover_drush_command() {
  $commands['takeover'] = array(
    'description' => 'Take over certain services',
    'bootstrap' => DRUSH_BOOTSTRAP_DRUPAL_FULL,
    'arguments' => array(
      'source' => 'Source service name.',
      'target' => 'Target service name.',
    ),
  );
  return $commands;
}