We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f0812a6 commit 6533dccCopy full SHA for 6533dcc
data/api.cfg
@@ -3,6 +3,8 @@
3
#
4
# A restful HTTP API for ansible
5
# I am not a part of ansible official code
6
+#
7
+# https://github.com/lfbear/ansible-api
8
# ==============================================
9
10
##
@@ -19,6 +21,9 @@ port = 8765
19
21
#signature string for api call
20
22
sign_key = YOUR_SIGNATURE_KEY_HERE
23
24
+#signature encryption method, md5 or sha256. sha256 suggested
25
+sign_mode = sha256
26
+
27
#log path if using daemon mode
28
log_path = /var/log/ansible-api.log
29
src/ansible_api/__init__.py
@@ -7,8 +7,8 @@
# Author: lfbear
-# update at 2018.12.27
11
-__version__ = '0.5.0'
+# update at 2019.10.29
+__version__ = '0.5.1'
12
13
RTM_TYPE_OVERVIEW = 5
14
RTM_TYPE_DETAIL = 6
0 commit comments