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:
parent
c3262679ab
commit
f445e369bc
1 changed files with 9 additions and 1 deletions
|
@ -40,4 +40,12 @@ ram.runtime = "50M"
|
||||||
main.exposed = "TCP"
|
main.exposed = "TCP"
|
||||||
|
|
||||||
[resources.apt]
|
[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
|
||||||
|
"""
|
||||||
|
|
Loading…
Reference in a new issue