scripts/installer.sh: add Siemens Industrial OS (#17185)

Fixes #17179

Signed-off-by: Erisa A <erisa@tailscale.com>
pull/17187/head
Erisa A 3 months ago committed by GitHub
parent cd153aa644
commit 61751a0c9a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -110,6 +110,17 @@ main() {
APT_KEY_TYPE="keyring" APT_KEY_TYPE="keyring"
fi fi
;; ;;
industrial-os)
OS="debian"
PACKAGETYPE="apt"
if [ "$(printf %.1s "$VERSION_ID")" -lt 5 ]; then
VERSION="buster"
APT_KEY_TYPE="legacy"
else
VERSION="bullseye"
APT_KEY_TYPE="keyring"
fi
;;
parrot|mendel) parrot|mendel)
OS="debian" OS="debian"
PACKAGETYPE="apt" PACKAGETYPE="apt"

Loading…
Cancel
Save