hosting_dns.module in Hostmaster (Aegir) 6
Manage DNS records for your hosted sites.
File
modules/hosting/dns/hosting_dns.moduleView source
<?php
/**
* @file
* Manage DNS records for your hosted sites.
*/
/**
* Implementation of hook_hosting_service_type().
*/
function hosting_dns_hosting_service_type() {
return array(
'dns' => array(
'title' => t('DNS service'),
),
);
}
/**
* Implementation of hook_hosting_service().
*/
function hosting_dns_hosting_service() {
return array(
'dnsmasq' => 'dns',
'bind' => 'dns',
'bind_slave' => 'dns',
);
}
Functions
Name | Description |
---|---|
hosting_dns_hosting_service | Implementation of hook_hosting_service(). |
hosting_dns_hosting_service_type | Implementation of hook_hosting_service_type(). |