diff --git a/ct/hyperion-v5.sh b/ct/hyperion-v5.sh index 92cdc544..77124f48 100644 --- a/ct/hyperion-v5.sh +++ b/ct/hyperion-v5.sh @@ -322,7 +322,7 @@ function update_script() { header_info msg_info "Updating ${APP} LXC" apt-get update &>/dev/null -apt-get -y upgrade &>/dev/null +apt-get install -y hyperion &>/dev/null msg_ok "Updated ${APP} LXC" msg_ok "Update Successfull" exit diff --git a/install/emby-v5-install.sh b/install/emby-v5-install.sh index be0e0a42..9129f141 100644 --- a/install/emby-v5-install.sh +++ b/install/emby-v5-install.sh @@ -95,8 +95,11 @@ if [[ -z "$(grep -w "100000" /proc/self/uid_map)" ]]; then $STD apt-get -y install \ va-driver-all \ ocl-icd-libopencl1 - if [[ ${PCT_OSVERSION} == "20.04" ]]; then $STD apt-get -y install beignet-opencl-icd; fi - + if [[ ${PCT_OSVERSION} == "20.04" ]]; then + $STD apt-get install -y beignet-opencl-icd + else + $STD apt-get install -y intel-opencl-icd + fi /bin/chgrp video /dev/dri /bin/chmod 755 /dev/dri /bin/chmod 660 /dev/dri/* diff --git a/install/homeassistant-core-v5-install.sh b/install/homeassistant-core-v5-install.sh index 9418516a..03b48123 100644 --- a/install/homeassistant-core-v5-install.sh +++ b/install/homeassistant-core-v5-install.sh @@ -135,10 +135,10 @@ echo -e 'if command -v pyenv 1>/dev/null 2>&1; then\n eval "$(pyenv init --path) msg_ok "Installed pyenv" . ~/.bashrc set -e -msg_info "Installing Python 3.10.8" -$STD pyenv install 3.10.8 -pyenv global 3.10.8 -msg_ok "Installed Python 3.10.8" +msg_info "Installing Python 3.11.1" +$STD pyenv install 3.11.1 +pyenv global 3.11.1 +msg_ok "Installed Python 3.11.1" msg_info "Installing Home Assistant-Core" mkdir /srv/homeassistant diff --git a/install/jellyfin-v5-install.sh b/install/jellyfin-v5-install.sh index 31bf0c17..5b386716 100644 --- a/install/jellyfin-v5-install.sh +++ b/install/jellyfin-v5-install.sh @@ -97,7 +97,11 @@ if [[ -z "$(grep -w "100000" /proc/self/uid_map)" ]]; then $STD apt-get -y install \ va-driver-all \ ocl-icd-libopencl1 - if [[ ${PCT_OSVERSION} == "20.04" ]]; then $STD apt-get -y install beignet-opencl-icd; fi + if [[ ${PCT_OSVERSION} == "20.04" ]]; then + $STD apt-get install -y beignet-opencl-icd + else + $STD apt-get install -y intel-opencl-icd + fi /bin/chgrp video /dev/dri /bin/chmod 755 /dev/dri /bin/chmod 660 /dev/dri/* diff --git a/install/omada-v5-install.sh b/install/omada-v5-install.sh index 176b67fc..c7edf4f4 100644 --- a/install/omada-v5-install.sh +++ b/install/omada-v5-install.sh @@ -95,9 +95,9 @@ wget -qL https://repo.mongodb.org/apt/ubuntu/dists/bionic/mongodb-org/3.6/multiv $STD dpkg -i mongodb-org-server_3.6.23_amd64.deb msg_ok "Installed Dependencies" -msg_info "Installing Omada Controller v5.8.4" -wget -qL https://static.tp-link.com/upload/software/2023/202301/20230130/Omada_SDN_Controller_v5.8.4_Linux_x64.deb -$STD dpkg -i Omada_SDN_Controller_v5.8.4_Linux_x64.deb +msg_info "Installing Omada Controller v5.9.9" +wget -qL https://static.tp-link.com/upload/software/2023/202302/20230227/Omada_SDN_Controller_v5.9.9_Linux_x64.deb +$STD dpkg -i Omada_SDN_Controller_v5.9.9_Linux_x64.deb msg_ok "Installed Omada Controller" echo "export TERM='xterm-256color'" >>/root/.bashrc @@ -119,7 +119,7 @@ fi if [[ "${SSH_ROOT}" == "yes" ]]; then sed -i "s/#PermitRootLogin prohibit-password/PermitRootLogin yes/g" /etc/ssh/sshd_config; systemctl restart sshd; fi msg_info "Cleaning up" -rm -rf Omada_SDN_Controller_v5.8.4_Linux_x64.deb mongodb-org-server_3.6.23_amd64.deb +rm -rf Omada_SDN_Controller_v5.9.9_Linux_x64.deb mongodb-org-server_3.6.23_amd64.deb $STD apt-get autoremove $STD apt-get autoclean msg_ok "Cleaned" diff --git a/install/plex-v5-install.sh b/install/plex-v5-install.sh index a3ca2992..41a071c7 100644 --- a/install/plex-v5-install.sh +++ b/install/plex-v5-install.sh @@ -96,8 +96,11 @@ if [[ -z "$(grep -w "100000" /proc/self/uid_map)" ]]; then $STD apt-get -y install \ va-driver-all \ ocl-icd-libopencl1 - if [[ ${PCT_OSVERSION} == "20.04" ]]; then $STD apt-get -y install beignet-opencl-icd; fi - + if [[ ${PCT_OSVERSION} == "20.04" ]]; then + $STD apt-get install -y beignet-opencl-icd + else + $STD apt-get install -y intel-opencl-icd + fi /bin/chgrp video /dev/dri /bin/chmod 755 /dev/dri /bin/chmod 660 /dev/dri/*