Add date to header in windows
This commit is contained in:
parent
d8d5b5f6bc
commit
5fcedc0fe9
@ -361,7 +361,9 @@ function onToggleAccessButtonClicked(e) {
|
||||
|
||||
var value = $(e.target).attr("data-value") == 'True';
|
||||
|
||||
var confirm = window.confirm("Do you want to disable " + cn);
|
||||
var textValues = {false:"Disable",true:"Enable"}
|
||||
|
||||
var confirm = window.confirm("Do you want to " + textValues[value] +" "+ cn);
|
||||
|
||||
if (confirm) {
|
||||
$.ajax({
|
||||
|
@ -22,6 +22,7 @@ Invoke-WebRequest `{% if token %}
|
||||
-Method PUT `{% else %}
|
||||
-Uri 'https://{{ authority.namespace }}:8443/api/request/?wait=yes&autosign=yes' `
|
||||
-Method POST `{% endif %}
|
||||
-Headers @{'Date' = (Get-Date).ToUniversalTime().ToString("r")} `
|
||||
-TimeoutSec 900 `
|
||||
-InFile host_csr.pem `
|
||||
-ContentType application/pkcs10 `
|
||||
|
Loading…
Reference in New Issue
Block a user