diff --git a/migrations/0010_no_distro_role_rename.sql b/migrations/0010_no_distro_role_rename.sql new file mode 100644 index 0000000..e164c28 --- /dev/null +++ b/migrations/0010_no_distro_role_rename.sql @@ -0,0 +1,11 @@ +BEGIN; + +-- Fedora-Installer wurde zurückgestellt, Fokus liegt jetzt auf Mint. brave +-- und onlyoffice sind über Flatpak implementiert und damit schon jetzt +-- distributionsunabhängig - die bisherige "-fedora"/"-mint"-Aufspaltung war +-- irreführend (kein echter Unterschied im Ansible-Inhalt). Beide Backends +-- nutzen ab jetzt dieselbe distro-unabhängige Rolle. +UPDATE blueprints SET ansible_role = 'brave' WHERE ansible_role IN ('brave-fedora', 'brave-mint'); +UPDATE blueprints SET ansible_role = 'onlyoffice' WHERE ansible_role IN ('onlyoffice-fedora', 'onlyoffice-mint'); + +COMMIT;