diff options
Diffstat (limited to '_posts/2019-03-07-ansible-part-1.md')
-rw-r--r-- | _posts/2019-03-07-ansible-part-1.md | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/_posts/2019-03-07-ansible-part-1.md b/_posts/2019-03-07-ansible-part-1.md index 7512865..b1a5e74 100644 --- a/_posts/2019-03-07-ansible-part-1.md +++ b/_posts/2019-03-07-ansible-part-1.md @@ -56,7 +56,8 @@ The playbook to install is quite simple: {% highlight yml %} # main.yml -- hosts: all tasks: +- hosts: all + tasks: - name: install vim dnf: name: vim |