diff options
author | Patrick McDermott <patrick.mcdermott@libiquity.com> | 2021-01-16 04:59:21 (EST) |
---|---|---|
committer | Patrick McDermott <patrick.mcdermott@libiquity.com> | 2021-01-16 05:42:04 (EST) |
commit | 8ab731bb1d411fd5a11eb8278ad344f7f8bd47c6 (patch) | |
tree | ab1c9f8078e2c4eff2cbeaeb30eb4c0a03930e07 /src/profile | |
parent | 854d8403909e7deb0e945ca4723d63ef34357192 (diff) |
profile_installer_type(): New function
Diffstat (limited to 'src/profile')
-rw-r--r-- | src/profile/proteanos.sh | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/src/profile/proteanos.sh b/src/profile/proteanos.sh index 8a2cf91..0f34f5d 100644 --- a/src/profile/proteanos.sh +++ b/src/profile/proteanos.sh @@ -162,6 +162,27 @@ prof_proteanos_select_mirror() printf '%s\n' "${mirrors}" | sed -n "${mirror_num}p" } +prof_proteanos_installer_type() +{ + local mirror="${1}" + local suite="${2}" + local arch="${3}" + local plat="${4}" + shift 4 + local arch_clean= + local plat_clean= + local archplat= + local installer_type= + + _prof_proteanos_get_platforms "${mirror}" "${suite}" + arch_clean="$(printf '%s' "${arch}" | tr -c '[a-z0-9/]' '_')" + plat_clean="$(printf '%s' "${plat}" | tr -c '[a-z0-9/]' '_')" + archplat="${arch_clean}__${plat_clean}" + eval "installer_type=\"\${_prof_proteanos_archplat_type_${archplat}}\"" + + return "${installer_type}" +} + prof_proteanos_validate_archplat() { local mirror="${1}" |