dotfiles

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

ansible.cfg (508B)


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