mirror of
https://github.com/tailscale/tailscale.git
synced 2024-11-29 04:55:31 +00:00
scripts/installer.sh: use expr for regex matches.
=~ doesn't work in posix shell, only in bash, and we don't use bash. Signed-off-by: David Anderson <danderson@tailscale.com>
This commit is contained in:
parent
7ce9c7ce84
commit
1b4e007425
@ -38,7 +38,7 @@ main() {
|
||||
PACKAGETYPE="apt"
|
||||
# Third-party keyrings became the preferred method of
|
||||
# installation in Ubuntu 20.04.
|
||||
if [ "$VERSION_ID" =~ ^2 ]; then
|
||||
if expr "$VERSION_ID" : "2.*" >/dev/null; then
|
||||
APT_KEY_TYPE="keyring"
|
||||
else
|
||||
APT_KEY_TYPE="legacy"
|
||||
@ -72,7 +72,7 @@ main() {
|
||||
OS="$ID"
|
||||
VERSION="$VERSION_ID"
|
||||
PACKAGETYPE="dnf"
|
||||
if [ "$VERSION" =~ ^7 ]; then
|
||||
if expr "$VERSION" : "7.*" >/dev/null; then
|
||||
PACKAGETYPE="yum"
|
||||
fi
|
||||
;;
|
||||
|
Loading…
Reference in New Issue
Block a user