Skip to content
Snippets Groups Projects
ansible.cfg.sample 508 B
Newer Older
  • Learn to ignore specific revisions
  • # This is a sample for a local Ansible configuration. Please copy it from
    # ansible.cfg.default into ansible.cfg and change the remote user accordingly.
    # Please keep the ansible_managed line unchanged so that Ansible will not
    # change templated files on managed machines unnecessarily.
    
    [defaults]
    remote_user = YOUR_USER_NAME_HERE
    inventory = inventory
    nocows = 1
    ansible_managed = This file is managed automatically by Ansible. Please do not edit manually!
    retry_files_enabled = False
    
    # vim: set ft=cfg: