alpine-zigbee2mqtt-install.sh 550 B

1234567891011121314151617181920212223242526272829
  1. #!/usr/bin/env bash
  2. # Copyright (c) 2021-2023 tteck
  3. # Author: tteck (tteckster)
  4. # License: MIT
  5. # https://github.com/tteck/Proxmox/raw/main/LICENSE
  6. source /dev/stdin <<< "$FUNCTIONS_FILE_PATH"
  7. color
  8. verb_ip6
  9. catch_errors
  10. setting_up_container
  11. network_check
  12. update_os
  13. msg_info "Installing Dependencies"
  14. $STD apk add newt
  15. $STD apk add curl
  16. $STD apk add openssh
  17. $STD apk add nano
  18. $STD apk add mc
  19. msg_ok "Installed Dependencies"
  20. msg_info "Installing Alpine-Zigbee2MQTT"
  21. $STD apk add zigbee2mqtt
  22. msg_ok "Installed Alpine-Zigbee2MQTT"
  23. motd_ssh
  24. customize