You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<1> Information about the configured certificate, will no longer be created or updated.
41
+
42
+
The "info" section is no longer created or updated for "update" certificates.
43
+
44
+
.cert-config.json
45
+
....
46
+
"update": {
47
+
"file": "cert/server.p12",
48
+
"password": "server",
49
+
"type": "p12"
50
+
}
51
+
....
52
+
53
+
54
+
NOTE: To enable the previous behavior, use the `--cert-config-update` parameter of the configuration tool or the `axway.tools.cfg.cert.updateConfigured` property of the plugin.
Copy file name to clipboardExpand all lines: src/main/resources/scripts/lib/buildfed.py
+8Lines changed: 8 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -33,6 +33,8 @@ def main():
33
33
parser.add_option("-c", "--config", dest="config_file_path", help="Path of JSON configuration file", metavar="FILEPATH")
34
34
parser.add_option("--prop", dest="prop_file_path", help="Path of JSON property file [optional]", metavar="FILEPATH")
35
35
parser.add_option("--cert", dest="cert_file_path", help="Path of JSON certificate configuration file [optional]", metavar="FILEPATH")
36
+
parser.add_option("--cert-expiration", dest="cert_expiration_days", help="Check if certificates expire within the next days [optional]", metavar="DAYS")
37
+
parser.add_option("--cert-config-update", dest="cert_config_update", help="Enable writing of info section for 'update' certificates within the configuration file [optional]", action="store_true")
0 commit comments