From 6334143f80b17bbdceeb388e217ca8165d0c0dd7 Mon Sep 17 00:00:00 2001 From: Thomas Stallinger Date: Sun, 14 Jun 2026 21:39:52 +0200 Subject: [PATCH] Initial profile definitions --- README.md | 15 +++++++++++++++ fedora-workstation/profile.json | 15 +++++++++++++++ mint-desktop/profile.json | 15 +++++++++++++++ 3 files changed, 45 insertions(+) create mode 100644 README.md create mode 100644 fedora-workstation/profile.json create mode 100644 mint-desktop/profile.json diff --git a/README.md b/README.md new file mode 100644 index 0000000..391046f --- /dev/null +++ b/README.md @@ -0,0 +1,15 @@ +# Profiles + +This repository contains provisioning profiles. + +Current profiles: + +- mint-desktop +- fedora-workstation + +Future: + +- mint-office +- mint-developer +- fedora-kiosk +- fedora-cad diff --git a/fedora-workstation/profile.json b/fedora-workstation/profile.json new file mode 100644 index 0000000..ce7b0da --- /dev/null +++ b/fedora-workstation/profile.json @@ -0,0 +1,15 @@ +{ + "id": "fedora-workstation", + "label": "Fedora Workstation", + "distribution": "fedora", + "version": "40", + + "installer": { + "type": "kickstart" + }, + + "ansible": { + "repo": "fedora-workstation", + "mode": "pull" + } +} diff --git a/mint-desktop/profile.json b/mint-desktop/profile.json new file mode 100644 index 0000000..2c29c2f --- /dev/null +++ b/mint-desktop/profile.json @@ -0,0 +1,15 @@ +{ + "id": "mint-desktop", + "label": "Linux Mint Desktop", + "distribution": "linux-mint", + "version": "22", + + "installer": { + "type": "autoinstall" + }, + + "ansible": { + "repo": "mint-desktop", + "mode": "pull" + } +}