Skip to content
Snippets Groups Projects
Select Git revision
  • 4a51650f1422221dfa3cc2fd38dfdbb6401e0ff9
  • master default
  • v1
  • btrfs-backup
4 results

ansible.cfg

Blame
  • ansible.cfg 550 B
    [defaults]
    callback_enabled = ansible.posix.profile_tasks, ansible.posix.timer
    deprecation_warnings = True
    fact_caching = jsonfile
    fact_caching_connection = ~/.ansible/facts
    force_handlers = True
    interpreter_python = auto
    inventory = hosts
    gathering = smart
    pipelining = True
    retry_files_save_path = /tmp/
    system_warnings = True
    unparsed_is_failed = True
    vault_password_file = vault-passhole ;# pragma: allowlist secret
    verbosity = 2
    
    [inventory]
    enable_plugins = yaml
    
    [privilege_escalation]
    become = True
    become_user = root
    become_ask_pass = False