mirror of
https://github.com/outbackdingo/firezone.git
synced 2026-01-27 18:18:55 +00:00
Update install script to support Ubuntu 22.04 (#733)
This commit is contained in:
@@ -30,6 +30,7 @@ Firezone currently supports the following platforms:
|
||||
| Fedora 35 | `amd64` `arm64` | **Fully-supported** | See [Fedora Notes](#fedora-notes) |
|
||||
| Ubuntu 18.04 | `amd64` `arm64` | **Fully-supported** | See [Ubuntu 18.04 Notes](#ubuntu-1804-notes) |
|
||||
| Ubuntu 20.04 | `amd64` `arm64` | **Fully-supported** | Works as-is |
|
||||
| Ubuntu 22.04 | `amd64` `arm64` | **Fully-supported** | Works as-is |
|
||||
| openSUSE Leap 15.3 | `amd64` | **Fully-supported** | See [openSUSE Notes](#opensuse-notes) |
|
||||
|
||||
<!-- markdownlint-enable MD013 -->
|
||||
|
||||
@@ -105,9 +105,9 @@ mapReleaseToDistro() {
|
||||
image_sub_string="ubuntu1804-x64"
|
||||
elif [[ "$hostinfo" =~ .*"Ubuntu 18.04".* && "$hostinfo" =~ .*"arm64" ]]; then
|
||||
image_sub_string="ubuntu1804-arm64"
|
||||
elif [[ "$hostinfo" =~ .*"Ubuntu 2"(0|1)".04".* && "$hostinfo" =~ .*"x86" ]]; then
|
||||
elif [[ "$hostinfo" =~ .*"Ubuntu 2"(0|1|2)".04".* && "$hostinfo" =~ .*"x86" ]]; then
|
||||
image_sub_string="ubuntu2004-x64"
|
||||
elif [[ "$hostinfo" =~ .*"Ubuntu 2"(0|1)".04".* && "$hostinfo" =~ .*"arm64" ]]; then
|
||||
elif [[ "$hostinfo" =~ .*"Ubuntu 2"(0|1|2)".04".* && "$hostinfo" =~ .*"arm64" ]]; then
|
||||
image_sub_string="ubuntu2004-arm64"
|
||||
elif [[ "$hostinfo" =~ .*"CentOS Linux 7".* && "$hostinfo" =~ .*"x86" ]]; then
|
||||
image_sub_string="centos7-x64"
|
||||
|
||||
Reference in New Issue
Block a user