function hosting_site_hosting_import_task_rollback in Hostmaster (Aegir) 6
Implementation of the hosting_failed_install hook
File
- modules/
hosting/ site/ hosting_site.drush.inc, line 227
Code
function hosting_site_hosting_import_task_rollback($task, $data) {
if ($task->ref->type == 'site') {
$task->ref->no_verify = TRUE;
$task->ref->verified = 0;
$task->ref->site_status = HOSTING_SITE_DISABLED;
node_save($task->ref);
}
}