Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- [UPGRADE-PKG] Restart GUI/Portal services only at the end of an upgrade
### Fixed
- [UPGRADE-PKG] Only restart jail service(s) when corresponding package is upgraded
- [UPGRADE-OS] Do not check version when specifying a version to install


## [1.0.4] - 2025-10-29
Expand Down
3 changes: 2 additions & 1 deletion usr/local/share/vulture-utils/upgrade-os.sh
Original file line number Diff line number Diff line change
Expand Up @@ -92,8 +92,9 @@ update_system() {
fi
if [ -n "$system_version" ]; then
# Add -U as non-last update versions cannot be verified
# Add -i to disable version check
echo "[!] Custom version of system update selected, this version will be installed without signature verification!"
_options="${_options} -v $system_version -U"
_options="${_options} -v $system_version -U -i"
fi
if [ -z "$_jail" ] && [ $snapshot_system -gt 0 ]; then
_options="${_options} -b ${_snap_name}"
Expand Down