Compare commits

..

No commits in common. "e85c3b1dc2de60f9950dc24afc5d57628e955baf" and "80d896f4b3cb6c3e39951b35d758c8ea235f4700" have entirely different histories.

2 changed files with 8 additions and 7 deletions

View file

@ -1,7 +1,7 @@
document.addEventListener('DOMContentLoaded', () => {
const $myDatetimeField = document.querySelector('#butterbox_date');
if (!$myDatetimeField) return;
const currentTime = new Date();
var currentTime = new Date();
const $myDatetimeField = document.querySelector('#butterbox_date')
console.log(currentTime.toISOString().substring(0, 19));
$myDatetimeField.value = currentTime.toISOString().substring(0, 19) + 'Z';
});
});

View file

@ -71,6 +71,7 @@ def run_madmail_installer():
child.sendline("y")
child.expect(pexpect.EOF)
daemon_reload = run(["sudo", "systemctl", "daemon-reload"], capture_output=True, text=True)
if daemon_reload.returncode != 0:
print(f"Issue running systemctl daemon_reload")
daemon_reload = run(["sudo", "systemctl", "daemon-reload"], capture_output=True, text=True)
if daemon_reload.returncode != 0:
print(f"Issue running systemctl daemon_reload")