1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/yacy_ynh.git synced 2024-09-03 18:05:59 +02:00

Merge pull request #17 from Thovi98/testing

fix bookworm
This commit is contained in:
Alexandre Aubin 2024-05-01 21:14:46 +02:00 committed by GitHub
commit 54c390d26d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -67,6 +67,10 @@ ram.runtime = "590M"
main.default = 8090 main.default = 8090
[resources.apt] [resources.apt]
packages = [ packages_from_raw_bash = """
"openjdk-11-jre-headless" if [[ $YNH_DEBIAN_VERSION == "bullseye" ]]; then
] echo "openjdk-11-jre";
elif [[ $YNH_DEBIAN_VERSION == "bookworm" ]]; then
echo "openjdk-17-jre";
fi
"""