This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[defaults] | |
# (boolean) By default Ansible will issue a warning when received from a task action (module or action plugin) | |
# These warnings can be silenced by adjusting this setting to False. | |
;action_warnings=True | |
# (list) Accept list of cowsay templates that are 'safe' to use, set to empty list if you want to enable all installed templates. | |
#cowsay_enabled_stencils=bud-frogs, bunny, cheese, daemon, default, dragon, elephant-in-snake, elephant, eyes, hellokitty, kitty, luke-koala, meow, milk, moofasa, moose, ren, sheep, small, stegosaurus, stimpy, supermilker, three-eyes, turkey, turtle, tux, udder, vader-koala, vader, www | |
# (string) Specify a custom cowsay path or swap in your cowsay implementation of choice | |
;cowpath= |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
- name: Setup anisette-v3 | |
hosts: remote.host.ip.addr | |
gather_facts: false | |
become: True | |
tasks: | |
- name: Setup podman | |
ansible.builtin.package: | |
name: podman | |
state: present |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
" Reopen the last edited position in files | |
au BufReadPost * if line("'\"") > 1 && line("'\"") <= line("$") | exe "normal! g'\"" | endif | |
" Ansible space config | |
"autocmd FileType yaml setlocal ai ts=2 sw=2 et colorcolumn=1,3,5,7,9,11,13 | |
" Don't try to be vi compatible | |
set nocompatible | |
" Helps force plugins to load correctly when it is turned back on below |