-
cat /etc/yum.repos.d/myApplication.repo
[myAppRepoId]
name=Repository for myApplication
baseurl=https://...
enabled=1
[other settings...]
-
dnf config-manager --disable myAppRepoId && cat /etc/yum.repos.d/myApplication.repo
Updating Subscription Management repositories.
[myAppRepoId]
name=Repository for myApplication
baseurl=https://...
enabled=0
[other settings...]
-
dnf config-manager --enable myAppRepoId && cat /etc/yum.repos.d/myApplication.repo
Updating Subscription Management repositories.
[myAppRepoId]
name=Repository for myApplication
baseurl=https://...
enabled=1
[other settings...]