Compare commits

..

15 Commits

Author SHA1 Message Date
tteckster d5ac9ed5b7
Update paperless-ngx.sh
fix update
2023-06-29 13:01:34 -04:00
tteckster 834b9002a5
Update paperless-ngx.sh
default Debian 12
2023-06-29 12:55:55 -04:00
tteckster e4dff2c808
Update paperless-ngx-install.sh
Debian 12 compatible
2023-06-29 12:55:10 -04:00
tteckster bc103fa66d
Update dashy.sh
default Debian 12
2023-06-29 11:24:13 -04:00
tteckster 6b02a5ec0c
Update dashy-install.sh
fixed install
closes https://github.com/tteck/Proxmox/issues/1564
2023-06-29 11:23:39 -04:00
tteckster d9b9e7a851
Update dashy-install.sh
tweak
2023-06-29 10:35:00 -04:00
tteckster eb9f50901c
Update dashy-install.sh
node 16.20.1
2023-06-29 10:27:01 -04:00
tteckster c2c4ac8f03
Update dashy-install.sh
node 17
2023-06-29 10:20:55 -04:00
tteckster fced2347fd
Update dashy-install.sh
fix install
Debian 12 compatible
2023-06-29 10:11:46 -04:00
tteckster f13b111c56
Update qbittorrent.sh
default Debian 12
2023-06-29 09:39:16 -04:00
tteckster 2e64312114
Update bazarr.sh
default Debian 12
2023-06-29 09:33:25 -04:00
tteckster c48420acfc
Update prowlarr.sh
default Debian 12
2023-06-29 09:32:54 -04:00
tteckster c6902c2ab4
Update readarr.sh
default Debian 12
2023-06-29 09:32:07 -04:00
tteckster d67160437a
Update radarr.sh
default Debian 12
2023-06-29 09:31:21 -04:00
tteckster 4c9a67a40a
Update tautulli.sh
default Debian 12
2023-06-29 09:29:54 -04:00
10 changed files with 19 additions and 17 deletions

View File

@ -23,7 +23,7 @@ var_disk="4"
var_cpu="2" var_cpu="2"
var_ram="1024" var_ram="1024"
var_os="debian" var_os="debian"
var_version="11" var_version="12"
variables variables
color color
catch_errors catch_errors

View File

@ -23,7 +23,7 @@ var_disk="6"
var_cpu="2" var_cpu="2"
var_ram="2048" var_ram="2048"
var_os="debian" var_os="debian"
var_version="11" var_version="12"
variables variables
color color
catch_errors catch_errors

View File

@ -24,7 +24,7 @@ var_disk="8"
var_cpu="2" var_cpu="2"
var_ram="2048" var_ram="2048"
var_os="debian" var_os="debian"
var_version="11" var_version="12"
variables variables
color color
catch_errors catch_errors
@ -80,6 +80,7 @@ function update_script() {
cp -r /opt/paperless/paperless.conf paperless-ngx/ cp -r /opt/paperless/paperless.conf paperless-ngx/
cp -r paperless-ngx/* /opt/paperless/ cp -r paperless-ngx/* /opt/paperless/
cd /opt/paperless cd /opt/paperless
sed -i 's/scipy==1.8.1/scipy==1.10.1/g' requirements.txt
sed -i -e 's|-e git+https://github.com/paperless-ngx/django-q.git|git+https://github.com/paperless-ngx/django-q.git|' /opt/paperless/requirements.txt sed -i -e 's|-e git+https://github.com/paperless-ngx/django-q.git|git+https://github.com/paperless-ngx/django-q.git|' /opt/paperless/requirements.txt
pip install -r requirements.txt &>/dev/null pip install -r requirements.txt &>/dev/null
cd /opt/paperless/src cd /opt/paperless/src

View File

@ -23,7 +23,7 @@ var_disk="4"
var_cpu="2" var_cpu="2"
var_ram="1024" var_ram="1024"
var_os="debian" var_os="debian"
var_version="11" var_version="12"
variables variables
color color
catch_errors catch_errors

View File

@ -24,7 +24,7 @@ var_disk="8"
var_cpu="2" var_cpu="2"
var_ram="2048" var_ram="2048"
var_os="debian" var_os="debian"
var_version="11" var_version="12"
variables variables
color color
catch_errors catch_errors

View File

@ -23,7 +23,7 @@ var_disk="4"
var_cpu="2" var_cpu="2"
var_ram="1024" var_ram="1024"
var_os="debian" var_os="debian"
var_version="11" var_version="12"
variables variables
color color
catch_errors catch_errors

View File

@ -23,7 +23,7 @@ var_disk="4"
var_cpu="2" var_cpu="2"
var_ram="1024" var_ram="1024"
var_os="debian" var_os="debian"
var_version="11" var_version="12"
variables variables
color color
catch_errors catch_errors

View File

@ -23,7 +23,7 @@ var_disk="4"
var_cpu="2" var_cpu="2"
var_ram="1024" var_ram="1024"
var_os="debian" var_os="debian"
var_version="11" var_version="12"
variables variables
color color
catch_errors catch_errors

View File

@ -18,20 +18,20 @@ $STD apt-get install -y curl
$STD apt-get install -y sudo $STD apt-get install -y sudo
$STD apt-get install -y mc $STD apt-get install -y mc
$STD apt-get install -y git $STD apt-get install -y git
$STD apt-get install -y make
$STD apt-get install -y g++
$STD apt-get install -y gcc
msg_ok "Installed Dependencies" msg_ok "Installed Dependencies"
msg_info "Installing Node.js" msg_info "Installing Node.js (Patience)"
$STD bash <(curl -fsSL https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.3/install.sh) $STD apt-get install -y npm
. ~/.bashrc $STD npm cache clean -f
$STD nvm install 16.20.1 $STD npm install -g n
ln -sf /root/.nvm/versions/node/v16.20.1/bin/node /usr/bin/node $STD n 16.20.1
$STD npm install -g pnpm
ln -sf /usr/local/bin/node /usr/bin/node
msg_ok "Installed Node.js" msg_ok "Installed Node.js"
msg_info "Installing Yarn" msg_info "Installing Yarn"
$STD npm install --global yarn $STD npm install --global yarn
ln -sf /usr/local/bin/yarn /usr/bin/yarn
msg_ok "Installed Yarn" msg_ok "Installed Yarn"
msg_info "Installing Dashy (Patience)" msg_info "Installing Dashy (Patience)"

View File

@ -81,6 +81,7 @@ $STD tar -xf paperless-ngx-$Paperlessngx.tar.xz -C /opt/
mv paperless-ngx paperless mv paperless-ngx paperless
rm paperless-ngx-$Paperlessngx.tar.xz rm paperless-ngx-$Paperlessngx.tar.xz
cd /opt/paperless cd /opt/paperless
sed -i 's/scipy==1.8.1/scipy==1.10.1/g' requirements.txt
## python 3.10+ doesn't like the '-e', so we remove it from this the requirements file ## python 3.10+ doesn't like the '-e', so we remove it from this the requirements file
sed -i -e 's|-e git+https://github.com/paperless-ngx/django-q.git|git+https://github.com/paperless-ngx/django-q.git|' /opt/paperless/requirements.txt sed -i -e 's|-e git+https://github.com/paperless-ngx/django-q.git|git+https://github.com/paperless-ngx/django-q.git|' /opt/paperless/requirements.txt
$STD pip install --upgrade pip $STD pip install --upgrade pip