849c0eb070
The files /usr/sbin/pkg/FreeBSD.conf.* currently set base repo to {enable: no}.
We don't want to overwrite /local/etc/pkg/repos/FreeBSD.conf that already exists
when users choose tech preview in the installation.
Signed-off-by: Guilherme Augusto de Souza Candinho <cndghm@gmail.com>
Reviewed by: imp
Pull Request: https://github.com/freebsd/freebsd-src/pull/1925
33 lines
1.0 KiB
Plaintext
33 lines
1.0 KiB
Plaintext
#
|
|
# To disable a repository, instead of modifying or removing this file,
|
|
# create or edit /usr/local/etc/pkg/repos/FreeBSD.conf, e.g.:
|
|
#
|
|
# mkdir -p /usr/local/etc/pkg/repos
|
|
# echo "FreeBSD-ports: { enabled: no }" >> /usr/local/etc/pkg/repos/FreeBSD.conf
|
|
# echo "FreeBSD-ports-kmods: { enabled: no }" >> /usr/local/etc/pkg/repos/FreeBSD.conf
|
|
#
|
|
# Note that the FreeBSD-base repository is disabled by default.
|
|
#
|
|
|
|
FreeBSD-ports: {
|
|
url: "pkg+https://pkg.FreeBSD.org/${ABI}/quarterly",
|
|
mirror_type: "srv",
|
|
signature_type: "fingerprints",
|
|
fingerprints: "/usr/share/keys/pkg",
|
|
enabled: yes
|
|
}
|
|
FreeBSD-ports-kmods: {
|
|
url: "pkg+https://pkg.FreeBSD.org/${ABI}/kmods_quarterly_${VERSION_MINOR}",
|
|
mirror_type: "srv",
|
|
signature_type: "fingerprints",
|
|
fingerprints: "/usr/share/keys/pkg",
|
|
enabled: yes
|
|
}
|
|
FreeBSD-base: {
|
|
url: "pkg+https://pkg.FreeBSD.org/${ABI}/base_release_${VERSION_MINOR}",
|
|
mirror_type: "srv",
|
|
signature_type: "fingerprints",
|
|
fingerprints: "/usr/share/keys/pkgbase-${VERSION_MAJOR}",
|
|
enabled: no
|
|
}
|