Last active
January 20, 2021 12:53
-
-
Save mjf/c45409eded0ea9f2e72e51eddcba6c50 to your computer and use it in GitHub Desktop.
Move CentOS 8 to Stream
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /bin/sh | |
# Script "memo" to move CentOS 8 to AppStream | |
# Copyright (C) 2021 Matous Jan Fialka, <https://mjf.cz/> | |
# Released under the terms of "The MIT License" | |
dnf update -y && \ | |
dnf install -y centos-release-stream && \ | |
dnf distro-sync -y | |
# vi:ft=sh |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment