@@ -64,6 +64,7 @@ BEGIN {
target_put_guest_image target_editfile
target_editfile_cancel target_fetchurl
http_proxy_envsettings
+ target_https_mitm_proxy_cert_path
target_editfile_root target_file_exists
target_editfile_kvp_replace
target_run_apt
@@ -2714,4 +2715,10 @@ sub target_https_mitm_proxy_setup ($) {
target_cmd_root($ho, 'update-ca-certificates', 300);
}
+sub target_https_mitm_proxy_cert_path ($) {
+ my ($ho) = @_;
+ return undef unless length $c{HttpsProxyMITMCert};
+ return '/etc/ssl/certs/osstest.pem';
+}
+
1;