@@ -110,7 +110,6 @@ def _write_as_config(self, cb: '_ConfigBuilder'):
110
110
self ._write_trcs (config_dir )
111
111
self ._write_certs (config_dir )
112
112
self ._write_keys (config_dir )
113
- self ._write_clients (config_dir )
114
113
self ._write_master_keys (config_dir )
115
114
116
115
def _write_trcs (self , dir ):
@@ -134,13 +133,6 @@ def _write_keys(self, dir):
134
133
for key in self .AS .keys .all ():
135
134
self .archive .write_text ((dir , CRYPTO_DIR , key .subdir (), key .filename ()), key .key )
136
135
137
- def _write_clients (self , dir ):
138
- # CA ASes have a certificate chain for each client for certificate renewal.
139
- # We're not currently doing certificate renewal (perhaps we should try to disable it
140
- # entirely?), but the directory needs to exist.
141
- if self .AS .is_core :
142
- self .archive .add_dir ((dir , CRYPTO_DIR , 'ca' , 'clients' ))
143
-
144
136
def _write_master_keys (self , dir ):
145
137
self .archive .write_text ((dir , KEY_DIR , MASTER_KEY_0 ), self .AS .master_as_key )
146
138
self .archive .write_text ((dir , KEY_DIR , MASTER_KEY_1 ), self .AS .master_as_key )
@@ -318,13 +310,6 @@ def build_cs_conf(self, service):
318
310
'address' : _join_host_port (service .host .internal_ip , CS_QUIC_PORT ),
319
311
},
320
312
})
321
- if service .AS .is_core :
322
- conf .update ({
323
- 'renewal_db' : {
324
- 'connection' : '%s.renewal.db' % os .path .join (self .var_dir ,
325
- service .instance_name ),
326
- },
327
- })
328
313
329
314
return conf
330
315
0 commit comments