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

Fixes #17179

Signed-off-by: Erisa A <erisa@tailscale.com>
This commit is contained in:
Erisa A 2025-09-18 15:50:01 +01:00 committed by GitHub
parent cd153aa644
commit 61751a0c9a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -110,6 +110,17 @@ main() {
APT_KEY_TYPE="keyring"
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)
OS="debian"
PACKAGETYPE="apt"