-
-
Notifications
You must be signed in to change notification settings - Fork 34
Create a freebsd-update package and adding it to jail dependency #375
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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. |
|
test this |
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: