Compare commits

..

4 Commits

Author SHA1 Message Date
Matthew ea1e30dfa9
Update photoprism-install.sh (#2610)
For some reason it seems as though the binaries as part of `libheif1` install not to `/usr/local/bin` but to `/usr/local` and so were not on the path, therefore the default value of photoprism's `--heifconvert-bin` / `$PHOTOPRISM_HEIFCONVERT_BIN` (`heif-convert`) would not be resolved
2024-03-06 09:14:05 -05:00
Matthew 8bbb33b97b
Update photoprism-install.sh (#2609)
add rawtherapee dependency to enable raw image conversion
2024-03-06 08:58:29 -05:00
tteckster a6b415bc36
Update code-server.sh
fixes https://github.com/tteck/Proxmox/issues/2608
2024-03-06 05:50:36 -05:00
tteckster c7e4f370c6
Update prometheus.sh
fixes https://github.com/tteck/Proxmox/issues/2607
2024-03-06 05:31:07 -05:00
3 changed files with 5 additions and 4 deletions

View File

@ -55,10 +55,7 @@ function default_settings() {
function update_script() {
header_info
if [[ ! -f /etc/systemd/system/prometheus.service ]]; then msg_error "No ${APP} Installation Found!"; exit; fi
msg_info "Updating ${APP} LXC"
apt-get update &>/dev/null
apt-get -y upgrade &>/dev/null
msg_ok "Updated Successfully"
msg_error "There is currently no update path available."
exit
}

View File

@ -25,7 +25,10 @@ $STD apt-get install -y libjpeg-dev
$STD apt-get install -y libtiff-dev
$STD apt-get install -y imagemagick
$STD apt-get install -y darktable
$STD apt-get install -y rawtherapee
echo 'export PATH=/usr/local:$PATH' >>~/.bashrc
export PATH=/usr/local:$PATH
msg_ok "Installed Dependencies"
msg_info "Installing PhotoPrism (Patience)"

View File

@ -47,6 +47,7 @@ function error_exit() {
clear
header_info
if command -v pveversion >/dev/null 2>&1; then echo -e "⚠️ Can't Install on Proxmox "; exit; fi
if [ -e /etc/alpine-release ]; then echo -e "⚠️ Can't Install on Alpine"; exit; fi
while true; do
read -p "This will Install ${APP} on $hostname. Proceed(y/n)?" yn
case $yn in