1# 2# To disable a repository, instead of modifying or removing this file, 3# create a /usr/local/etc/pkg/repos/FreeBSD.conf file, e.g.: 4# 5# mkdir -p /usr/local/etc/pkg/repos 6# echo "FreeBSD-ports: { enabled: no }" > /usr/local/etc/pkg/repos/FreeBSD.conf 7# echo "FreeBSD-ports-kmods: { enabled: no }" >> /usr/local/etc/pkg/repos/FreeBSD.conf 8# 9# Note that the FreeBSD-base repository is disabled by default. 10# 11 12FreeBSD-ports: { 13 url: "pkg+https://pkg.FreeBSD.org/${ABI}/quarterly", 14 mirror_type: "srv", 15 signature_type: "fingerprints", 16 fingerprints: "/usr/share/keys/pkg", 17 enabled: yes 18} 19FreeBSD-ports-kmods: { 20 url: "pkg+https://pkg.FreeBSD.org/${ABI}/kmods_quarterly_${VERSION_MINOR}", 21 mirror_type: "srv", 22 signature_type: "fingerprints", 23 fingerprints: "/usr/share/keys/pkg", 24 enabled: yes 25} 26FreeBSD-base: { 27 url: "pkg+https://pkgbase.FreeBSD.org/${ABI}/base_release_${VERSION_MINOR}", 28 mirror_type: "srv", 29 signature_type: "fingerprints", 30 fingerprints: "/usr/share/keys/pkgbase-${VERSION_MAJOR}", 31 enabled: no 32} 33