Create a freebsd-update package and adding it to jail dependency#375
Merged
ericbsd merged 1 commit intoreleng/15.0from Nov 2, 2025
Merged
Create a freebsd-update package and adding it to jail dependency#375ericbsd merged 1 commit intoreleng/15.0from
ericbsd merged 1 commit intoreleng/15.0from
Conversation
- Split freebsd-update into separate package - Include in minimal-jail annotation set - Make jail package depend on freebsd-update
Reviewer's guide (collapsed on small PRs)Reviewer's GuideThis PR refactors the freebsd-update tool into its own package by updating its Makefile, introduces a new UCL annotation for minimal jail sets, and ensures the jail package declares a dependency on freebsd-update. Entity relationship diagram for UCL annotation setserDiagram
JAIL_ALL {
string name
string[] annotations
}
FREEBSD_UPDATE_ALL {
string name
string[] annotations
}
JAIL_ALL ||--o{ FREEBSD_UPDATE_ALL : includes
Class diagram for package structure changesclassDiagram
class JailPackage {
+depends_on: freebsd-update
}
class FreebsdUpdatePackage {
+Makefile
+freebsd-update.conf
+freebsd-update.sh
+freebsd-update.8
}
JailPackage --> FreebsdUpdatePackage
File-Level Changes
Tips and commandsInteracting with Sourcery
Customizing Your ExperienceAccess your dashboard to:
Getting Help
|
|
Thank you for taking the time to contribute to FreeBSD!
Please review CONTRIBUTING.md, then update and push your branch again. |
Member
Author
|
test this |
5 tasks
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
GhostBSD does not use freebsd-update it will be removed from the default.
Summary by Sourcery
Introduce a standalone freebsd-update package and update the jail-all package to depend on it.
New Features:
Build: