You are here

function https_drush_context_import in Aegir HTTPS 7.3

Implements hook_drush_context_import().

File

./hosting_https.drush.inc, line 35
Drush hooks for the Hosting HTTPS module.

Code

function https_drush_context_import($context, &$node) {
  if ($context->type == 'site') {
    $node->https_enabled = $context->https_enabled;
    $node->https_client_authentication_enabled = $context->https_client_authentication_enabled;
    $node->https_key = $context->https_key;
  }
}