1
0
mirror of https://github.com/mail-in-a-box/mailinabox.git synced 2025-04-05 00:27:25 +00:00
This commit is contained in:
downtownallday 2020-06-02 17:11:58 -04:00
parent c0a2e048b3
commit 8d033a4bdd

View File

@ -103,6 +103,13 @@ mgmt_create_user() {
record "[create user $email]"
mgmt_rest POST /admin/mail/users/add "email=$email" "password=$pass"
rc=$?
if echo "$REST_OUTPUT" | grep "updated DNS:" >/dev/null; then
record "[Detected dns update]"
systemctl status nsd.service >>$TEST_OF
record "Sleeping 5 seconds for services to start"
sleep 5
systemctl status nsd.service >>$TEST_OF
fi
return $rc
}