mirror of
https://github.com/mail-in-a-box/mailinabox.git
synced 2025-04-03 00:07:05 +00:00
Revert certificate typo
This commit is contained in:
parent
fab7eae1ff
commit
b0c2f880ac
@ -23,11 +23,11 @@ def migration_1(env):
|
|||||||
# Migrate the 'domains' directory.
|
# Migrate the 'domains' directory.
|
||||||
for sslfn in glob.glob(os.path.join( env["STORAGE_ROOT"], 'ssl/domains/*' )):
|
for sslfn in glob.glob(os.path.join( env["STORAGE_ROOT"], 'ssl/domains/*' )):
|
||||||
fn = os.path.basename(sslfn)
|
fn = os.path.basename(sslfn)
|
||||||
m = re.match("(.*)_(certificate.pem|cert_sign_req.csr|private_key.pem)$", fn)
|
m = re.match("(.*)_(certifiate.pem|cert_sign_req.csr|private_key.pem)$", fn)
|
||||||
if m:
|
if m:
|
||||||
# get the new name for the file
|
# get the new name for the file
|
||||||
domain_name, file_type = m.groups()
|
domain_name, file_type = m.groups()
|
||||||
if file_type == "certificate.pem": file_type = "ssl_certificate.pem" # typo
|
if file_type == "certifiate.pem": file_type = "ssl_certificate.pem" # typo
|
||||||
if file_type == "cert_sign_req.csr": file_type = "certificate_signing_request.csr" # nicer
|
if file_type == "cert_sign_req.csr": file_type = "certificate_signing_request.csr" # nicer
|
||||||
move_file(sslfn, domain_name, file_type)
|
move_file(sslfn, domain_name, file_type)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user