Added ansible callbacks to time plays

This commit is contained in:
Sagi Dayan 2021-11-04 13:52:54 +02:00
parent 966b71923b
commit 1c0a79731a
Signed by: sagi
GPG key ID: FAB96BFC63B46458
3 changed files with 11 additions and 6 deletions

View file

@ -2,4 +2,4 @@
output_dir = /tmp/artifacts output_dir = /tmp/artifacts
transport = local transport = local
callback_whitelist = junit callback_whitelist = junit, timer, profile_roles

View file

@ -28,7 +28,12 @@
" Set encoding to utf8 " Set encoding to utf8
set encoding=UTF-8 set encoding=UTF-8
" Set no compatible
set nocompatible
" File type plugin on
filetype plugin on
" Turn on syntax
syntax on
" install plugins automatically " install plugins automatically
autocmd VimEnter * autocmd VimEnter *
\ if len(filter(values(g:plugs), '!isdirectory(v:val.dir)')) \ if len(filter(values(g:plugs), '!isdirectory(v:val.dir)'))
@ -108,13 +113,13 @@ let NERDTreeIgnore=['\.git$']
" Theme settings " Theme settings
"============================================================================== "==============================================================================
"let &t_8f = "\<Esc>[38;2;%lu;%lu;%lum" let &t_8f = "\<Esc>[38;2;%lu;%lu;%lum"
"let &t_8b = "\<Esc>[48;2;%lu;%lu;%lum" let &t_8b = "\<Esc>[48;2;%lu;%lu;%lum"
"set termguicolors "set termguicolors
" Theme " Theme
colorscheme nord colorscheme nord
" Setting dark mode " Setting dark mode
"set background=dark set background=dark
"============================================================================== "==============================================================================
" line number " line number

View file

@ -1,7 +1,7 @@
- hosts: localhost - hosts: localhost
vars: vars:
# Theme options: monokai, gruvbox, nord # Theme options: monokai, gruvbox, nord
theme: nord theme: gruvbox
# The running user # The running user
running_user: "{{ ansible_user_id }}" running_user: "{{ ansible_user_id }}"
roles: roles: