dnf config-managerを使用してシステムに rpm リポジトリを追加したい:
# dnf config-manager --add-repo=http://example.com/rpm-repo --setopt=gpgcheck=0 --save
Adding repo from: http://example.com/rpm-repo
# cat /etc/yum.repos.d/example.com_rpm-repo.repo
[example.com_rpm-repo]
name=created by dnf config-manager from http://example.com/rpm-repo
baseurl=http://example.com/rpm-repo
enabled=1
結果のexample.com_rpm-repo.repoファイルに指定されたオプションが含まれていないのはなぜgpgcheck=0
ですか?
環境:
# cat /etc/centos-release
CentOS Linux release 8.0.1905 (Core)
# yum list installed | grep dnf
dnf.noarch 4.0.9.2-5.el8 @System
dnf-data.noarch 4.0.9.2-5.el8 @System
dnf-plugins-core.noarch 4.0.2.2-3.el8 @BaseOS
dnf-utils.noarch 4.0.2.2-3.el8 @BaseOS
libdnf.x86_64 0.22.5-4.el8 @System
python3-dnf.noarch 4.0.9.2-5.el8 @System
python3-dnf-plugins-core.noarch 4.0.2.2-3.el8 @BaseOS
python3-libdnf.x86_64 0.22.5-4.el8 @System