1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/squid3_ynh.git synced 2024-09-03 20:26:11 +02:00

Update manifest.toml: fix bookworm compatibility

This commit is contained in:
Alexandre Aubin 2024-05-01 21:33:24 +02:00 committed by GitHub
parent c3262679ab
commit f445e369bc
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -40,4 +40,12 @@ ram.runtime = "50M"
main.exposed = "TCP"
[resources.apt]
packages = ["squid3", "mailutils"]
packages = ["mailutils"]
packages_from_raw_bash = """
if [[ $YNH_DEBIAN_VERSION == "bullseye" ]]; then
echo "squid3";
elif [[ $YNH_DEBIAN_VERSION == "bookworm" ]]; then
echo "squid";
fi
"""