Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Sylvain committed Dec 18, 2024
1 parent 19a20d4 commit 56a82a2
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 22 deletions.
30 changes: 9 additions & 21 deletions manifest.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ name = "Immich"
description.en = "Photo and video backup solution directly from your mobile phone"
description.fr = "Sauvegarde de photos et de vidéos directement depuis votre mobile"

version = "1.123.0~ynh1"
version = "1.123.0~ynh2"

maintainers = ["ewilly"]

Expand All @@ -19,7 +19,7 @@ userdoc = "https://github.com/immich-app/immich#getting-started"
code = "https://github.com/immich-app/immich"

[integration]
yunohost = ">= 11.2.18"
yunohost = ">= 12"
helpers_version = "2.1"
architectures = ["arm64", "amd64"]
multi_instance = false
Expand Down Expand Up @@ -73,25 +73,15 @@ ram.runtime = "500M"

[resources.apt]
packages = [
"python3-venv",
"python3-dev",
"ffmpeg",
"pipx",
"curl",
"postgresql",
"wget",
"build-essential",
"libreadline-dev",
"libncursesw5-dev",
"libssl-dev",
"libsqlite3-dev",
"tk-dev",
"libgdbm-dev",
"libc6-dev",
"libbz2-dev",
"libffi-dev",
"zlib1g-dev",
"unzip",
"redis-server",
"python3",
"uuid-runtime",
"autoconf",
"build-essential",
"unzip",
"jq",
"perl",
"libnet-ssleay-perl",
Expand All @@ -113,9 +103,7 @@ ram.runtime = "500M"
"libmojolicious-perl",
"libfile-slurper-perl",
"liblcms2-2",
"libllvm16",
"libllvm13",
"redis-server"
"wget"
]

[resources.apt.extras.postgresql]
Expand Down
1 change: 0 additions & 1 deletion scripts/_common.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ app_node_version() {
| cut -d':' -f2 \
| cut -d'.' -f1
}
nodejs_version=$(app_node_version)

# Fail2ban
failregex="$app-server.*Failed login attempt for user.+from ip address\s?<ADDR>"
Expand Down
1 change: 1 addition & 0 deletions scripts/install
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ ynh_setup_source --source_id="ffmpeg-static" --dest_dir="$ffmpeg_static_dir"
#=================================================
ynh_script_progression "Installing nodejs..."

nodejs_version=$(app_node_version)
ynh_nodejs_install

#=================================================
Expand Down
1 change: 1 addition & 0 deletions scripts/restore
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ ynh_restore "$data_dir"
#=================================================
ynh_script_progression "Reinstalling nodejs..."

nodejs_version=$(app_node_version)
ynh_nodejs_install

#=================================================
Expand Down
1 change: 1 addition & 0 deletions scripts/upgrade
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ ynh_setup_source --source_id="ffmpeg-static" --dest_dir="$ffmpeg_static_dir" --f
#=================================================
ynh_script_progression "Installing nodejs..."

nodejs_version=$(app_node_version)
ynh_nodejs_install

#=================================================
Expand Down

0 comments on commit 56a82a2

Please sign in to comment.