27 lines
522 B
YAML
27 lines
522 B
YAML
---
|
|
- name: Set system timezone
|
|
ansible.builtin.command: timedatectl set-timezone "America/Denver"
|
|
register: output
|
|
changed_when: output.rc != 0
|
|
|
|
- name: Set hostname
|
|
ansible.builtin.hostname:
|
|
name: "{{ hostname }}"
|
|
|
|
- name: Set repo
|
|
ansible.builtin.dnf:
|
|
|
|
- name: Install baseline packages
|
|
ansible.builtin.dnf:
|
|
name:
|
|
- '@Development tools'
|
|
- vim
|
|
- curl
|
|
- git
|
|
- bash-completion
|
|
- firewalld
|
|
# - fastfetch
|
|
# - btop
|
|
state: present
|
|
update_cache: true
|