Add some rudimentary Fedora Kinoite setup
This commit is contained in:
parent
e3ece57eca
commit
ebc7c0cde5
13
playbooks/platforms_fedora-kinoite.yml
Executable file
13
playbooks/platforms_fedora-kinoite.yml
Executable file
@ -0,0 +1,13 @@
|
||||
#!/usr/bin/env ansible-playbook
|
||||
# vim:ft=ansible:
|
||||
---
|
||||
- hosts: platforms_fedora-kinoite
|
||||
gather_facts: no
|
||||
roles:
|
||||
- role: motd
|
||||
vars:
|
||||
motd_watch_services_extra:
|
||||
- docker
|
||||
- kubelet
|
||||
- postgresql
|
||||
tags: [ motd, common ]
|
@ -8,6 +8,7 @@
|
||||
- import_playbook: platforms_ubuntu-20-04.yml
|
||||
- import_playbook: platforms_ubuntu-21-10.yml
|
||||
- import_playbook: platforms_ubuntu-22-04.yml
|
||||
- import_playbook: platforms_fedora-kinoite.yml
|
||||
- import_playbook: platforms_proxmox-ve-7.yml
|
||||
# Manufacturer configuration
|
||||
- import_playbook: manufacturers_raspi.yml
|
||||
|
@ -41,3 +41,12 @@
|
||||
- name: autoclean
|
||||
ansible.builtin.apt: autoclean=yes
|
||||
when: ansible_os_family == "Debian"
|
||||
- name: configure rpm-ostree packages
|
||||
community.general.rpm_ostree_pkg:
|
||||
name:
|
||||
- htop
|
||||
- ibm-plex-fonts-all
|
||||
- ncdu
|
||||
- screen
|
||||
- vim
|
||||
when: ansible_os_family == "RedHat" and ansible_pkg_mgr == "atomic_container"
|
||||
|
Loading…
Reference in New Issue
Block a user