diff --git a/server/config/commands.js b/server/config/commands.js new file mode 100644 index 0000000..a650361 --- /dev/null +++ b/server/config/commands.js @@ -0,0 +1,17 @@ +/** + * Created by mannam4 on 7/5/2017. + */ + +module.exports = { + + ansible:{ + version : 'ansible --version', + doc: 'ansible-doc -l', + playbook: 'ansible-playbook %s -i %s', + export_ansible_library: 'export ANSIBLE_LIBRARY="%s";', + export_force_color: 'export ANSIBLE_FORCE_COLOR=%s;', + export_host_key_check: 'export ANSIBLE_HOST_KEY_CHECKING=%s;', + + } + +};