aboutsummaryrefslogtreecommitdiffstats
path: root/certificate-renew-issued
blob: 50cabe7d356dd93e46ba177a6c17b63200cc7789 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#!rsc by RouterOS
# RouterOS script: certificate-renew-issued
# Copyright (c) 2019-2020 Christian Hesse <mail@eworm.de>
# https://git.eworm.de/cgit/routeros-scripts/about/COPYING.md
#
# renew locally issued certificates
# https://git.eworm.de/cgit/routeros-scripts/about/doc/certificate-renew-issued.md

:global CertIssuedExportPass;

:global LogPrintExit;
:global MkDir;

:foreach Cert in=[ / certificate find where issued expires-after<3w ] do={
  :local CertVal [ / certificate get $Cert ];
  / certificate issued-revoke $Cert;
  / certificate set name=($CertVal->"name" . "-revoked-" . [ / system clock get date ]) $Cert;
  / certificate add name=($CertVal->"name") common-name=($CertVal->"common-name") \
      key-usage=($CertVal->"key-usage") subject-alt-name=($CertVal->"subject-alt-name");
  / certificate sign ($CertVal->"name") ca=($CertVal->"ca");
  :if ([ :typeof ($CertIssuedExportPass->($CertVal->"common-name")) ] = "str") do={
    $MkDir "cert-issued";
    / certificate export-certificate ($CertVal->"name") type=pkcs12 \
        file-name=("cert-issued/" . $CertVal->"common-name") \
        export-passphrase=($CertIssuedExportPass->($CertVal->"common-name"));
    $LogPrintExit info ("Issued a new certificate for \"" . $CertVal->"common-name" . \
      "\", exported to \"cert-issued/" . $CertVal->"common-name" . ".p12\".") false;
  } else={
    $LogPrintExit info ("Issued a new certificate for \"" . $CertVal->"common-name" . "\".") false;
  }
}