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