dotfiles

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

ansible.cfg (484B)


      1 [defaults]
      2 ask_pass = false
      3 inventory = inventory
      4 host_key_checking = false
      5 remote_user = pyratebeard
      6 interpreter_python = auto_silent
      7 deprecation_warnings = False
      8 nocows = true
      9 
     10 [colors]
     11 changed = bright yellow
     12 skip = yellow
     13 diff_add = bright cyan
     14 diff_remove = bright red
     15 warn = bright blue
     16 
     17 [privilege_escalation]
     18 become_ask_pass = false
     19 
     20 [netconf_connection]
     21 ssh_config = {{ ANSIBLE_HOME ~ "/.ssh/config" }}
     22 
     23 [persistent_connection]
     24 control_path_dir={{ ANSIBLE_HOME ~ "/.ssh/" }}