Changeset 6215
- Timestamp:
- Aug 17, 2008, 10:00:13 PM (17 years ago)
- Files:
-
- 1 added
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified TODO ¶
r6211 r6215 6 6 * Conversion Genesis -> Exodus 7 7 * Exodus, support Genesis output 8 * Add check that a domain has a dnsserver if not, named.conf generation gets broken 9 * Add reverse lookup fields for named.conf 10 * Fix dhcpd.conf template 8 11 * Interface cleanups: 9 * Make admin work with models.py10 12 ** option to edit/delete fields 11 13 ** allignment input fields … … 26 28 snmpd.local.conf 27 29 30 DONE: 31 15/08/08 * Make admin work with models.py 32 28 33 -
TabularUnified exodus/sql/dnsserver.sql ¶
r6212 r6215 2 2 INSERT INTO exodus_DnsServer VALUES ( 2, '172.17.143.4', 1); 3 3 INSERT INTO exodus_DnsServer VALUES ( 3, '172.20.128.98', 1); 4 INSERT INTO exodus_DnsServer VALUES ( 4, '172.27.129.66', 1); -
TabularUnified exodus/sql/network.sql ¶
r6191 r6215 1 1 INSERT INTO exodus_network VALUES ( 1, 'wleiden.net', '172.16.0.0',12); 2 INSERT INTO exodus_network VALUES ( 2, 'wzoeterwoude.net', '172.27.0.0',16); -
TabularUnified exodus/urls.py ¶
r6212 r6215 38 38 39 39 # config urls 40 (r'^(?P<object_id>.+)/dhcpd.conf /$', 'exodus.views.conf_dhcpd_conf'),41 (r'^(?P<object_id>.+)/named.conf /$', 'exodus.views.conf_named_conf'),42 (r'^(?P<object_id>.+)/rc.node.local /$', 'exodus.views.conf_rc_node_local'),43 (r'^(?P<object_id>.+)/resolv.conf /$', 'exodus.views.conf_resolv_conf'),40 (r'^(?P<object_id>.+)/dhcpd.conf$', 'exodus.views.conf_dhcpd_conf'), 41 (r'^(?P<object_id>.+)/named.conf$', 'exodus.views.conf_named_conf'), 42 (r'^(?P<object_id>.+)/rc.node.local$', 'exodus.views.conf_rc_node_local'), 43 (r'^(?P<object_id>.+)/resolv.conf$', 'exodus.views.conf_resolv_conf'), 44 44 45 45 -
TabularUnified exodus/views.py ¶
r6213 r6215 119 119 object.host = gethostname() 120 120 object.nic = object.nic_set.all() 121 122 #Used for named.conf 123 object.domains = Network.objects.all() 121 124 122 125 t = loader.get_template(template)
Note:
See TracChangeset
for help on using the changeset viewer.