dotfiles

*nix config files
git clone git://git.pyratebeard.net/dotfiles.git
Log | Files | Refs | README

commit 3708ced524699aaca10dbdcf4a49b854236dc0c9
parent 69647585597414efc1f99c89886eb041b757f826
Author: pyratebeard <root@pyratebeard.net>
Date:   Mon, 15 Apr 2024 16:25:02 +0100

ansible cfg

Diffstat:
Aansible/etc/ansible/ansible.cfg | 25+++++++++++++++++++++++++
1 file changed, 25 insertions(+), 0 deletions(-)

diff --git a/ansible/etc/ansible/ansible.cfg b/ansible/etc/ansible/ansible.cfg @@ -0,0 +1,25 @@ +[defaults] +ask_pass = false +inventory = inventory +host_key_checking = false +remote_user = pyratebeard +stdout_callback = debug +interpreter_python = auto_silent +deprecation_warnings = False +nocows = true + +[colors] +changed = bright yellow +skip = yellow +diff_add = bright cyan +diff_remove = bright red +warn = bright blue + +[privilege_escalation] +become_ask_pass = false + +[netconf_connection] +ssh_config = {{ ANSIBLE_HOME ~ "/.ssh/config" }} + +[persistent_connection] +control_path_dir={{ ANSIBLE_HOME ~ "/.ssh/" }}