Skip to content

Instantly share code, notes, and snippets.

@HauptJ
Created December 9, 2024 03:01
Show Gist options
  • Save HauptJ/378593899ca4987101bd86ff94c1c0f1 to your computer and use it in GitHub Desktop.
Save HauptJ/378593899ca4987101bd86ff94c1c0f1 to your computer and use it in GitHub Desktop.
Single file Ansible Playbook to install text editors on Fedora
#!/usr/bin/env ansible-playbook
---
- name: Install Text Editors
hosts: localhost
become: true
gather_facts: False
tasks:
- name: Install Terminal Text Editors
dnf:
name:
- vim
- emacs
state: latest
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment