function hosting_site_post_hosting_install_task in Hostmaster (Aegir) 6
implementation of the hosting_post_install hook
File
- modules/
hosting/ site/ hosting_site.drush.inc, line 78
Code
function hosting_site_post_hosting_install_task($task, $data) {
if ($task->ref->type == 'site') {
$context = $data['context'];
$packages = $context['packages'];
hosting_package_sync($packages);
hosting_package_instance_sync($task->ref->nid, $packages);
$task->ref->site_status = HOSTING_SITE_ENABLED;
$task->ref->ip_addresses = array_values($data['context']['site_ip_addresses']);
$task->ref->no_verify = TRUE;
$task->ref->verified = time();
if ($context['cron_key']) {
$task->ref->cron_key = $context['cron_key'];
}
node_save($task->ref);
if ($context['login_link']) {
drush_log($context['login_link']);
// we need to store the timestamp too because expire only means it can be deleted
// after an amount of time, not will be deleted.
$cache = array(
'expire' => strtotime("+24 hours"),
'link' => $context['login_link'],
);
cache_set('hosting:site:' . $task->ref->nid . ':login_link', $cache, 'cache', $cache['expire']);
}
}
}