From 5b30d9650717e5f7127d4c745e38ee4e28bb3ad2 Mon Sep 17 00:00:00 2001 From: Fernando Schauenburg Date: Thu, 17 Dec 2020 20:32:50 +0100 Subject: [PATCH] ansible: fix main playbook syntax for consistency --- dotfiles.yml | 39 ++++++++++++++++++++------------------- 1 file changed, 20 insertions(+), 19 deletions(-) diff --git a/dotfiles.yml b/dotfiles.yml index 7931e50..adfd6fc 100644 --- a/dotfiles.yml +++ b/dotfiles.yml @@ -1,22 +1,23 @@ -- name: Set up development machine +- name: Make myself at home :) hosts: dotfiles vars_prompt: - - name: git_user - private: no - default: Fernando Schauenburg - - name: git_email - private: no - default: fernando@schauenburg.me + - name: git_user + private: no + default: Fernando Schauenburg + - name: git_email + private: no + default: fernando@schauenburg.me roles: - - packages - - bin - - bash - - dircolors - - git - - hushlogin - - mintty - - python - - readline - - ssh - - tmux - - vim + - packages + - bin + - bash + - dircolors + - git + - hushlogin + - mintty + - python + - readline + - ssh + - tmux + - vim +