Compare commits

...

7 Commits

Author SHA1 Message Date
tteckster d883f95276
Update homeassistant-v5.sh
fix directory check
2023-03-05 07:45:47 -05:00
tteckster c159c1add2
Update homeassistant-v5.sh
fix update
2023-03-05 07:20:28 -05:00
tteckster 1ca55a8d54
Update plex-v5-install.sh
use Intel OpenCL ICD for Ubuntu 22.04 and later
2023-03-03 06:45:45 -05:00
tteckster 0c43560908
Update emby-v5-install.sh
use Intel OpenCL ICD for Ubuntu 22.04 and later
2023-03-03 06:43:45 -05:00
tteckster 8488668d1b
Update jellyfin-v5-install.sh
use Intel OpenCL ICD for Ubuntu 22.04 and later
2023-03-03 06:19:08 -05:00
tteckster 2be4c2ccc5
Update omada-v5-install.sh
v5.9.9
2023-03-01 18:48:59 -05:00
tteckster 9f322e803c
Update hyperion-v5.sh
fix update
2023-03-01 15:04:19 -05:00
6 changed files with 21 additions and 12 deletions

View File

@ -27,7 +27,6 @@ var_os="debian"
var_version="11"
NSAPP=$(echo ${APP,,} | tr -d ' ')
var_install="${NSAPP}-v5-install"
NEXTID=$(pvesh get /cluster/nextid)
INTEGER='^[0-9]+$'
YW=$(echo "\033[33m")
BL=$(echo "\033[36m")
@ -410,7 +409,7 @@ if command -v pveversion >/dev/null 2>&1; then
install_script
fi
if ! command -v pveversion >/dev/null 2>&1 && [[ ! -f /var/lib/docker/volumes/hass_config/_data
if ! command -v pveversion >/dev/null 2>&1 && [[ ! -d /var/lib/docker/volumes/hass_config/_data
]]; then
msg_error "No ${APP} Installation Found!"
exit

View File

@ -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

View File

@ -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/*

View File

@ -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/*

View File

@ -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"

View File

@ -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/*