Created
December 9, 2024 03:01
-
-
Save HauptJ/378593899ca4987101bd86ff94c1c0f1 to your computer and use it in GitHub Desktop.
Single file Ansible Playbook to install text editors on Fedora
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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