function Provision_Service_Certificate::generate_certificates in Aegir HTTPS 7.3
Generate a self-signed certificate for the provided key.
1 call to Provision_Service_Certificate::generate_certificates()
- Provision_Service_Certificate::get_certificates in submodules/
certificate/ drush/ Provision/ Service/ Certificate.php - Retrieve an array containing the actual files for this https_key.
2 methods override Provision_Service_Certificate::generate_certificates()
- Provision_Service_Certificate_LetsEncrypt::generate_certificates in submodules/
letsencrypt/ drush/ Provision/ Service/ Certificate/ LetsEncrypt.php - Generate a self-signed certificate for the provided key.
- Provision_Service_Certificate_SelfSigned::generate_certificates in submodules/
self_signed/ drush/ Provision/ Service/ Certificate/ SelfSigned.php - Generate a self-signed certificate for the provided key.
File
- submodules/
certificate/ drush/ Provision/ Service/ Certificate.php, line 56
Class
- Provision_Service_Certificate
- The service type base class.
Code
function generate_certificates($https_key) {
// This is a dummy implementation. We should probably move this into an
// interface.
return TRUE;
}