You are here

function hosting_queued_update_6201 in Hosting 6.2

Same name and namespace in other branches
  1. 7.4 queued/hosting_queued.install \hosting_queued_update_6201()
  2. 7.3 queued/hosting_queued.install \hosting_queued_update_6201()

Properly remove/uninstall the queue runner.

File

queued/hosting_queued.install, line 35

Code

function hosting_queued_update_6201() {

  // Disable the predecessor of this module from the Aegir 1.x world
  module_disable(array(
    'hosting_queue_runner',
  ));
  drupal_uninstall_module('hosting_queue_runner');
  return array();
}