Skip to content

Instantly share code, notes, and snippets.

View Macleykun's full-sized avatar
🏠
Working from home

Macley Macleykun

🏠
Working from home
  • 21:47 (UTC +02:00)
View GitHub Profile
@Macleykun
Macleykun / ansible.cfg
Created March 15, 2024 16:51
ansible config file with various adjustments
[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=
@Macleykun
Macleykun / ansible-navigator.yml
Created March 15, 2024 16:51
Ansible-navigator config file, disable artifacts and only pull if missing default EE
---
ansible-navigator:
# ansible:
# config:
# # Help options for ansible-config command in stdout mode
# help: False
# # Specify the path to the ansible configuration file
# path: ./ansible.cfg
# # Extra parameters passed to the corresponding command
# cmdline: "--forks 15"
@Macleykun
Macleykun / main.yaml
Created February 25, 2024 14:35
Setup anisette-v3 rootless
---
- 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
@Macleykun
Macleykun / .vimrc
Last active March 15, 2024 18:17
Personal .vimrc
" 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