Fedora-OSTree-Setup-dev / Fedora-OSTree-Setup

Glorified scipt that automates the setup of Fedora Silverblue/Kinoite based on given config file.
GNU General Public License v3.0
7 stars 3 forks source link

Enable Version upgrade #88

Open boredsquirrel opened 1 year ago

boredsquirrel commented 1 year ago
#!/bin/bash
source /etc/os-release

read -p "What version of Fedora are you upgrading to? (37, 38 etc): " NEXT_VERSION
echo "Upgrading to Fedora $NEXT_VERSION from Fedora $VERSION_ID"
read -p "Press any key to continue...." 

sudo rpm-ostree rebase fedora:fedora/$NEXT_VERSION/x86_64/$VARIANT_ID 

This may already work.

iaacornus commented 1 year ago

this is an interesting thought, such that you can easily rebase, ill look into it