The release notes for 10.2 mention at the very bottom that:
My questions:
1. Why did it happen, what is the reason behind it? Many people preferred FreeBSD because of the always up-to-date packages. Is it like a mini-LTS?
2. What does it mean about security updates? Are they backported from latest to quarterly? If so, how frequently are they released? Which Q releases do they support (only the latest one?)
3. When upgrading from stock 10.1, will pkg(8) be on latest or quarterly?
Finally, the information which is missing from the release notes and the comment in /etc is how to set it back to latest is found in this HN comment: https://news.ycombinator.com/item?id=10058580
That is: create a file /usr/local/etc/pkg/repos/FreeBSD.conf with the following content:
I'm a newcomer to FreeBSD but I find it very surprising that this big change is barely mentioned at the bottom of the release notes and the correct code for changing back to latest is not mentioned neither in the release notes nor in the /etc comment.
The default pkg(8) repository set in /etc/pkg/FreeBSD.conf now defaults to the quarterly package set. To use the latest branch (as was the previous default), the comment at the top of /etc/pkg/FreeBSD.conf explains how to disable the default repository and specify an alternative repository. [r285830] (Sponsored by The FreeBSD Foundation)
Which I believe is the most important change in this release and there is barely any information about it.
My questions:
1. Why did it happen, what is the reason behind it? Many people preferred FreeBSD because of the always up-to-date packages. Is it like a mini-LTS?
2. What does it mean about security updates? Are they backported from latest to quarterly? If so, how frequently are they released? Which Q releases do they support (only the latest one?)
3. When upgrading from stock 10.1, will pkg(8) be on latest or quarterly?
Finally, the information which is missing from the release notes and the comment in /etc is how to set it back to latest is found in this HN comment: https://news.ycombinator.com/item?id=10058580
That is: create a file /usr/local/etc/pkg/repos/FreeBSD.conf with the following content:
Code:
FreeBSD: {
url: "pkg+http://pkg.FreeBSD.org/${ABI}/latest"
}
I'm a newcomer to FreeBSD but I find it very surprising that this big change is barely mentioned at the bottom of the release notes and the correct code for changing back to latest is not mentioned neither in the release notes nor in the /etc comment.