Jaromír Talíř wrote:
Yes, this is unimplemented section. We think once
there will be some
registry statistics for internal usage, but there are no plans yet.
Currently our development in web administration interface (daphne) is
concentrated on Users, User profiles, Authorization and Auditing. I
expect next release in about month.
One last question before I call it a night. On your site you have;
#!/bin/bash
ZONE=change_me
PRIMARY=primary.ns.change_me
HOSTMASTER=hostmaster.change_me
fred -U fred fred << _EOF_
INSERT INTO zone
(fqdn,ex_period_min,ex_period_max,val_period,dots_max)
VALUES('${ZONE}', 12, 12, 0, 1);
INSERT INTO zone_soa (Zone, TTL, Hostmaster, Serial, Refresh,
Update_retr, Expiry, Minimum, ns_fqdn) VALUES (curval('zone_id_seq'),
18000, '${HOSTMASTER}', NULL, 10600, 3600, 1209600, 7200, '${PRIMARY}');
INSERT INTO zone_ns (Zone, fqdn, addrs) VALUES (curval('zone_id_seq'),
'${PRIMARY}', '{}');
INSERT INTO registrarinvoice (registrarid,zone,fromdate) VALUES
(currval('registrar_id_seq'),curval('zone_id_seq'),NOW());
_EOF_
To create the first zone. How would one do this in the current version?
--julian