Compare commits

...

6 Commits

Author SHA1 Message Date
tteckster bb7c08e0fe
Update USER_SUBMITTED_GUIDES.md 2023-04-20 02:12:48 -04:00
ka2er 1e23eb23be
ENH : point webdriver to 127.0.0.1:4444/wd/hub instead of browser-chrome:4444/wd/hub (#1349) 2023-04-20 02:05:51 -04:00
tteckster 8a780c67f8
Update kavita-install.sh
fix unprivileged install
2023-04-20 01:58:56 -04:00
tteckster 488322bf2a
Update kavita-install.sh 2023-04-20 01:20:31 -04:00
tteckster 92f58314ff
Update kavita-install.sh 2023-04-20 01:07:17 -04:00
tteckster 9aade4f6a7
Update kavita-install.sh 2023-04-20 01:03:18 -04:00
3 changed files with 4 additions and 1 deletions

View File

@ -13,3 +13,5 @@
[Home Assistant: Proxmox Quick Start Guide](https://www.derekseaman.com/2023/04/installing-home-assistant-on-proxmox-quick-start-guide.html) [Home Assistant: Proxmox Quick Start Guide](https://www.derekseaman.com/2023/04/installing-home-assistant-on-proxmox-quick-start-guide.html)
[Home Assistant: Installing Grafana (LXC) with Lets Encrypt SSL](https://www.derekseaman.com/2023/04/home-assistant-installing-grafana-lxc.html) [Home Assistant: Installing Grafana (LXC) with Lets Encrypt SSL](https://www.derekseaman.com/2023/04/home-assistant-installing-grafana-lxc.html)
[Proxmox: Plex LXC with Alder Lake Transcoding](https://www.derekseaman.com/2023/04/proxmox-plex-lxc-with-alder-lake-transcoding.html)

View File

@ -34,6 +34,7 @@ After=network-online.target
[Service] [Service]
Type=simple Type=simple
WorkingDirectory=/opt/changedetection WorkingDirectory=/opt/changedetection
Environment="WEBDRIVER_URL=http://127.0.0.1:4444/wd/hub"
ExecStart=changedetection.io -d /opt/changedetection -p 5000 ExecStart=changedetection.io -d /opt/changedetection -p 5000
[Install] [Install]
WantedBy=multi-user.target WantedBy=multi-user.target

View File

@ -22,7 +22,7 @@ msg_ok "Installed Dependencies"
msg_info "Installing Kavita" msg_info "Installing Kavita"
cd /opt cd /opt
RELEASE=$(curl -s https://api.github.com/repos/Kareadita/Kavita/releases/latest | grep "tag_name" | awk '{print substr($2, 2, length($2)-3) }') RELEASE=$(curl -s https://api.github.com/repos/Kareadita/Kavita/releases/latest | grep "tag_name" | awk '{print substr($2, 2, length($2)-3) }')
$STD tar -xvzf <(curl -fsSL https://github.com/Kareadita/Kavita/releases/download/$RELEASE/kavita-linux-x64.tar.gz) $STD tar -xvzf <(curl -fsSL https://github.com/Kareadita/Kavita/releases/download/$RELEASE/kavita-linux-x64.tar.gz) --no-same-owner
msg_ok "Installed Kavita" msg_ok "Installed Kavita"
msg_info "Creating Service" msg_info "Creating Service"