You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
405 B
9 lines
405 B
5 years ago
|
#!/bin/sh
|
||
|
|
||
|
export PERL5LIB={{ pki_root_dir }}/lib/perl5
|
||
|
export OPENXPKI_CONF_PATH={{ pki_root_dir }}/etc/config.d
|
||
|
{% for realm in pki_realms %}
|
||
|
{{ pki_root_dir }}/bin/openxpkicmd --socketfile={{ pki_root_dir }}/run/openxpki.socket --realm {{ realm.name }} crl_issuance
|
||
|
{{ pki_root_dir }}/bin/openxpkicmd --socketfile={{ pki_root_dir }}/run/openxpki.socket --realm {{ realm.name }} ca_publish
|
||
|
{% endfor %}
|