What does "Not Updatable" tag actually mean in your context #4083
-
Looks like there's a definition on I assume it generally means that any updates must be made via software package within the container/VM itself, but how strong is your suggestion:
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Updatable = the script author implemented the update procedure into the script Most of the apps that we install are pulled from github, via release tarballs. This ensures that app most likely has a way of updating without forcing the user to reinstall the app. However, some apps introduce big changes to the way the app installs/updates/works, so the current update procedure would most likely break the entire LXC if used. For such apps we reserve a right to outright stop supporting it because of constant breaking, or we don't give the user option to update such apps until the developer starts making a stable, predictable release model. |
Beta Was this translation helpful? Give feedback.
Updatable = the script author implemented the update procedure into the script
Not Updatable = the author of the script didn't provide a update procedure or the app itself has a breaking change which results in us forcibly stopping any update on the app.
Most of the apps that we install are pulled from github, via release tarballs. This ensures that app most likely has a way of updating without forcing the user to reinstall the app.
However, some apps introduce big changes to the way the app installs/updates/works, so the current update procedure would most likely break the entire LXC if used. For such apps we reserve a right to outright stop supporting it because of constant breaking, or…