#129 Pass the CA identifier to the SCEP submit helper
Merged 4 years ago by rcritten. Opened 4 years ago by rcritten.
rcritten/certmonger scep_caid  into  master

file modified
+3 -1
@@ -4595,7 +4595,7 @@ 

  		return 1;

  	}

  	command = talloc_asprintf(globals.tctx,

- 				  "%s -u %s %s %s %s %s %s %s %s",

+ 				  "%s -u %s %s %s %s %s %s %s %s %s %s",

  				  shell_escape(globals.tctx,

  					       CM_SCEP_HELPER_PATH),

  				  shell_escape(globals.tctx, url),
@@ -4603,6 +4603,8 @@ 

  				  root ? shell_escape(globals.tctx, root) : "",

  				  racert ? "-r" : "",

  				  racert ? shell_escape(globals.tctx, racert) : "",

+ 				  id ? "-i" : "",

+ 				  id ? shell_escape(globals.tctx, id) : "",

  				  certs ? "-I" : "",

  				  certs ? shell_escape(globals.tctx, certs) : "",

  				  prefer_non_renewal ? "-n" : "");

rebased onto c10e0f6

4 years ago

Pull-Request has been merged by rcritten

4 years ago
Metadata