You are here

function letsencrypt_drush_command in Aegir HTTPS 7.3

Implements hook_drush_command().

File

submodules/letsencrypt/drush/letsencrypt.drush.inc, line 107
A Let's Encrypt implementation of the Certificate service for Provision.

Code

function letsencrypt_drush_command() {
  $items['letsencrypt-force-key-regenerate'] = array(
    'description' => 'Force a new key to be generated".',
    'bootstrap' => DRUSH_BOOTSTRAP_DRUSH,
    'aliases' => array(
      'lfkr',
    ),
  );
  return $items;
}