mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-06-03 06:49:10 -07:00
Fix docs typo in java_cert function docstring (#25942)
This commit is contained in:
parent
f831be680e
commit
7bed60ba5f
1 changed files with 1 additions and 1 deletions
|
@ -181,7 +181,7 @@ def import_cert_path(module, executable, path, keystore_path, keystore_pass, ali
|
||||||
return module.fail_json(msg=import_out, rc=import_rc, cmd=import_cmd)
|
return module.fail_json(msg=import_out, rc=import_rc, cmd=import_cmd)
|
||||||
|
|
||||||
def delete_cert(module, executable, keystore_path, keystore_pass, alias):
|
def delete_cert(module, executable, keystore_path, keystore_pass, alias):
|
||||||
''' Delete cerificate identified with alias from keystore on keystore_path '''
|
''' Delete certificate identified with alias from keystore on keystore_path '''
|
||||||
del_cmd = ("%s -delete -keystore '%s' -storepass '%s' "
|
del_cmd = ("%s -delete -keystore '%s' -storepass '%s' "
|
||||||
"-alias '%s'")%(executable, keystore_path, keystore_pass, alias)
|
"-alias '%s'")%(executable, keystore_path, keystore_pass, alias)
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue