1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/archivist_ynh.git synced 2024-09-03 18:15:55 +02:00
archivist_ynh/manifest.json

93 lines
3 KiB
JSON
Raw Normal View History

2017-11-01 20:57:58 +01:00
{
2020-05-02 00:51:00 +02:00
"name": "Archivist",
"id": "archivist",
"packaging_format": 1,
"description": {
2021-11-20 10:08:45 +01:00
"en": "Automatic backups",
"fr": "Sauvegardes automatiques"
2020-05-02 00:51:00 +02:00
},
2023-12-31 12:14:27 +01:00
"version": "1.3.4~ynh1",
2020-05-02 00:51:00 +02:00
"url": "https://github.com/maniackcrudelis/archivist",
2022-07-16 19:44:33 +02:00
"upstream": {
"license": "GPL-3.0",
"code": "https://github.com/maniackcrudelis/archivist"
},
2020-05-02 00:51:00 +02:00
"license": "GPL-3.0",
"maintainer": {
2021-03-14 21:19:41 +01:00
"name": "",
2021-01-12 18:53:17 +01:00
"email": ""
},
"previous_maintainers": [{
2020-05-02 00:51:00 +02:00
"name": "Maniack Crudelis",
"email": "maniackc_dev@crudelis.fr"
2021-01-12 18:53:17 +01:00
}],
2020-05-02 00:51:00 +02:00
"requirements": {
2023-12-31 12:14:27 +01:00
"yunohost": ">= 11.2.9"
2020-05-02 00:51:00 +02:00
},
"multi_instance": true,
"services": [],
"arguments": {
2022-07-16 19:44:33 +02:00
"install": [
2020-05-02 00:51:00 +02:00
{
"name": "encrypt",
"type": "boolean",
"ask": {
2021-11-20 10:08:45 +01:00
"en": "Do you want to encrypt your backups?",
2020-05-02 00:51:00 +02:00
"fr": "Voulez-vous chiffrer vos sauvegardes ?"
},
"default": true
},
{
"name": "encryption_pwd",
"type": "password",
"ask": {
"en": "Set the password for encryption.",
"fr": "Définissez le mot de passe de chiffrement."
},
"help": {
"en": "It's needed if you use backup encryption.",
"fr": "C'est nécessaire si vous utilisez le chiffrement."
},
"optional": true
},
{
"name": "core_backup",
"type": "boolean",
"ask": {
2021-11-20 10:08:45 +01:00
"en": "Would you like to backup your YunoHost core?",
2020-05-02 00:51:00 +02:00
"fr": "Souhaitez-vous effectuer des sauvegardes du système YunoHost ?"
},
"default": true
},
{
"name": "apps_backup",
"type": "boolean",
"ask": {
2021-11-20 10:08:45 +01:00
"en": "Would you like to backup your apps?",
2020-05-02 00:51:00 +02:00
"fr": "Souhaitez-vous effectuer des sauvegardes de vos applications ?"
},
"default": true
},
{
"name": "frequency",
"type": "select",
2020-05-02 00:51:00 +02:00
"ask": {
2021-11-20 10:08:45 +01:00
"en": "Choose the frequency of your backups?",
2020-05-02 00:51:00 +02:00
"fr": "Choississez la fréquence de votre backup ?"
},
"choices" : ["Daily", "Each 3 days", "Weekly", "Biweekly", "Monthly"],
"default" : "Weekly"
2023-12-31 18:02:30 +01:00
},
2023-12-31 17:58:52 +01:00
{
"name": "max_size",
"type": "select",
"ask": {
2023-12-31 18:11:51 +01:00
"en": "Specify the max size of each files backup (soft limit) in Mb. This will try to split the backup by its subdirectories to avoid to have only one big backup."
2023-12-31 17:58:52 +01:00
},
"choices" : ["50", "100", "500", "1000", "5000"],
"default" : "500"
}
2020-05-02 00:51:00 +02:00
]
}
2017-11-01 20:57:58 +01:00
}