commit 6334143f80b17bbdceeb388e217ca8165d0c0dd7 Author: Thomas Stallinger Date: Sun Jun 14 21:39:52 2026 +0200 Initial profile definitions 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" + } +}