diff options
author | Konstantinos Kallas <konstantinos.kallas@hotmail.com> | 2017-08-22 10:29:12 +0300 |
---|---|---|
committer | Konstantinos Kallas <konstantinos.kallas@hotmail.com> | 2017-08-22 10:29:12 +0300 |
commit | 6f972fa3fee77c53f48f77e5a867610dfeb81f91 (patch) | |
tree | 19398c950db0e02ed715f863b690bac7dd8251ab | |
parent | Remove partial RSA key support (diff) |
Clean run_acme testcase
-rwxr-xr-x | run_acme.sh | 20 |
1 files changed, 13 insertions, 7 deletions
diff --git a/run_acme.sh b/run_acme.sh index c4c7df4d9..227751af9 100755 --- a/run_acme.sh +++ b/run_acme.sh @@ -1,9 +1,15 @@ #!/bin/bash -erl -pa ebin \ -deps/jiffy/ebin \ -deps/fast_tls/ebin \ -deps/jose/ebin \ -deps/base64url/ebin \ -deps/xmpp/ebin \ --noshell -s acme_experimental scenario -s erlang halt
\ No newline at end of file + +set -v +sudo ejabberdctl stop +set -e +make +sudo make install +sudo ejabberdctl start +sleep 2 +sudo ejabberdctl get_certificate all +sudo ejabberdctl list_certificates plain + +sudo ejabberdctl revoke_certificate domain:my-test-ejabberd-server6.free +sudo ejabberdctl list_certificates verbose |