Skip to content
Snippets Groups Projects
Unverified Commit 7398ca89 authored by Oliver Smith's avatar Oliver Smith
Browse files

Check for hardcoded versions

Fix issue 11
parent 5fb49507
No related branches found
No related tags found
No related merge requests found
......@@ -171,6 +171,20 @@ check_mrtest() {
err_exit "Run 'mrtest zap' first"
}
check_hardcoded_versions() {
local pattern='[=><]'
if ! grep -q "$pattern" /etc/apk/world; then
return
fi
warn "Found hardcoded versions /etc/apk/world:"
grep "$pattern" /etc/apk/world
warn "Remove them first, e.g. by editing /etc/apk/world and running"
warn "'apk fix'. This is for advanced users, if you don't know what"
warn "you are doing, better make a backup first and ask for help."
err_exit "Fix hardcoded versions first"
}
get_channel_current() {
# shellcheck disable=SC2155
local ret="$(grep '^VERSION="' /etc/os-release | cut -d '"' -f 2)"
......@@ -498,6 +512,7 @@ init_log "$0" "$@"
check_is_pmos
check_boot_size
check_mrtest
check_hardcoded_versions
get_channels
check_channels_valid
check_channels_is_downgrade
......
  • Administrator @root

    mentioned in issue #11 (closed)

    By Oliver Smith on 2023-12-05T08:28:42

    · Imported

    mentioned in issue #11 (closed)

    By Oliver Smith on 2023-12-05T08:28:42

    Edited by Ghost User
    Toggle commit list
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment