You are here

function drush_hosting_pause in Hosting 7.3

Same name and namespace in other branches
  1. 6.2 pause.hosting.inc \drush_hosting_pause()
  2. 7.4 pause.hosting.inc \drush_hosting_pause()

Drush command to pause the Aegir frontend queues.

This is really just deleting our code from the crontab.

File

./pause.hosting.inc, line 24
Drush include for the Hosting module's hosting pause command.

Code

function drush_hosting_pause() {

  // Wipe out cron entry.
  _hosting_setup_cron($add = FALSE);
}