1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/borgserver_ynh.git synced 2024-09-03 20:36:20 +02:00
borgserver_ynh/manifest.toml

92 lines
2.4 KiB
TOML
Raw Normal View History

#:schema https://raw.githubusercontent.com/YunoHost/apps/master/schemas/manifest.v2.schema.json
2023-10-25 21:45:35 +02:00
packaging_format = 2
id = "borgserver"
name = "Borg Server"
description.en = "Offer backup storage to a friend"
description.fr = "Offrez un espace de stockage à un⋅e ami⋅e"
2024-08-20 13:36:18 +02:00
version = "1.2.8~ynh5"
2023-10-25 21:45:35 +02:00
maintainers = ["ljf"]
[upstream]
license = "BSD-3-Clause"
website = "https://www.borgbackup.org/"
admindoc = "https://borgbackup.readthedocs.io/en/stable/"
code = "https://github.com/borgbackup/borg"
[integration]
2023-10-25 21:57:09 +02:00
yunohost = ">= 11.2"
architectures = "all"
2023-10-25 21:45:35 +02:00
multi_instance = true
2023-10-25 21:57:09 +02:00
ldap = "not_relevant"
sso = "not_relevant"
disk = "50M"
ram.build = "50M"
ram.runtime = "50M"
2023-10-25 21:45:35 +02:00
[install]
[install.ssh_user]
ask.en = "Indicate the SSH user to create"
ask.fr = "Indiquez l'utilisateur SSH à créer"
type = "string"
example = "john"
[install.public_key]
ask.en = "Indicate the public key given by borg_ynh app"
ask.fr = "Indiquez la clé publique donnée par l'app borg_ynh"
type = "string"
[install.alert_delay]
ask.en = "After which delay in days should we alert if there are no changes on repo ?"
ask.fr = "Après quel délais en jours devons-nous lancer une alerte si il n'y a pas de changement dans le repo ?"
type = "string"
default = "1"
[install.alert_mails]
ask.en = "Emails to whom send alerts ?"
ask.fr = "Emails des personnes à qui envoyer les alertes ?"
type = "string"
default = "root"
example = "camille@example.com,eden@example.com"
[install.quota]
ask.en = "Indicate the storage quota"
ask.fr = "Indiquez le quota de stockage"
type = "string"
optional = true
2023-10-25 21:45:35 +02:00
example = "30G"
[resources]
2024-08-12 13:08:15 +02:00
[resources.sources.main]
url = "https://github.com/borgbackup/borg/archive/refs/tags/1.2.8.tar.gz"
sha256 = "0b7d124191372dda45274fbf9e393b066992fcfef05fea63714f7c5c1843fc7c"
# Only here to bump the package version
prefetch = false
autoupdate.strategy = "latest_github_release"
autoupdate.upstream = "https://github.com/borgbackup/borg"
[resources.system_user]
# Not really useful, but required for install_dir
[resources.install_dir]
2023-10-25 21:45:35 +02:00
[resources.permissions]
2023-10-25 21:57:09 +02:00
[resources.apt]
2024-04-10 23:29:40 +02:00
packages = [
"python3-pip",
"python3-dev",
"python3-jinja2",
"python3-setuptools",
"python3-venv",
"libacl1-dev",
"libssl-dev",
"liblz4-dev",
2024-04-10 23:29:40 +02:00
"libfuse3-dev",
"pkg-config",
]