Skip to content
Snippets Groups Projects
Select Git revision
  • 70c4c54fe5fb0d7e131a113acb961427657c2569
  • master default
2 results

requirements.txt

Blame
  • This project manages its dependencies using pip. Learn more
    .ansible.cfg 512 B
    [defaults]
    deprecation_warnings = True
    gathering = smart
    fact_caching = jsonfile
    fact_caching_connection = /tmp/ansible_fact_cache
    fact_caching_timeout = 86400
    vault_password_file = ~/.ansible-vault
    #host_key_checking = False
    forks = 5
    inventory = inventory
    #sudo_exe = sudo # OpenBSD uses doas from 5.8.
    retry_files_save_path = /tmp/ansible_retry
    
    [ssh_connection]
    pipelining = True
    control_path=/tmp/ssh-%%h
    
    [privilege_escalation]
    become = True
    become_method = sudo
    become_user = root
    become_ask_pass = False