1
0
Fork 0
mirror of https://github.com/mmumshad/ansible-playable.git synced 2025-02-12 22:11:55 +00:00

Move commands to config file

This commit is contained in:
Mumshad Mannambeth 2017-07-07 12:24:32 -04:00
parent 9c880c0bba
commit ecad9eed3f

17
server/config/commands.js Normal file
View file

@ -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;',
}
};