added taas machines as work type machines

This commit is contained in:
Kenji Morishige
2026-02-24 10:00:10 -06:00
parent 67926c37bd
commit d25dac1897
2 changed files with 2 additions and 2 deletions

View File

@@ -14,7 +14,7 @@ _is_work_host() {
[[ "${MACHINE_PROFILE:-}" == "work" ]] && return 0
# Fallback hostname pattern for work servers where .bashrc.local may not exist
case "$(hostname -s)" in
kenjim-mbp*|etqc-*|etbg-*|engtech-dev-*) return 0 ;;
kenjim-mbp*|etqc-*|etbg-*|engtech-dev-*|qnc-kenjim-toby-shell*|qtaas*|bng-kenjim-toby-shell*|btaas*) return 0 ;;
*) return 1 ;;
esac
}