mirror of
https://github.com/YunoHost-Apps/droppy_ynh.git
synced 2024-09-03 18:26:27 +02:00
parent
db3ece31aa
commit
bc9cd4fad8
8 changed files with 16 additions and 7 deletions
|
@ -15,9 +15,10 @@ If you don't have YunoHost, please consult [the guide](https://yunohost.org/#/in
|
|||
|
||||
## Overview
|
||||
|
||||
Self-hosted file storage server
|
||||
Droppy is a self-hosted file storage server with a web interface and capabilities to edit files and view media directly in the browser.
|
||||
|
||||
**Shipped version:** 12.2.0~ynh8
|
||||
|
||||
**Shipped version:** 12.2.0~ynh9
|
||||
|
||||
|
||||
|
||||
|
@ -27,6 +28,8 @@ Self-hosted file storage server
|
|||
|
||||
## Disclaimers / important information
|
||||
|
||||
Development of Droppy has been abandoned by its author, and its repository has been archived. Expect no future updates nor security fixes.
|
||||
|
||||
## Configuration
|
||||
|
||||
How to configure this app: a JSON configuration file with SSH. `/var/www/droppy/config/config.json`.
|
||||
|
|
|
@ -11,9 +11,10 @@ Si vous n'avez pas YunoHost, regardez [ici](https://yunohost.org/#/install) pour
|
|||
|
||||
## Vue d'ensemble
|
||||
|
||||
Serveur de stockage de fichiers auto-hébergé
|
||||
Droppy est un serveur de stockage de fichiers auto-hébergé avec une interface Web et des capacités pour éditer des fichiers et afficher des médias directement dans le navigateur.
|
||||
|
||||
**Version incluse :** 12.2.0~ynh8
|
||||
|
||||
**Version incluse :** 12.2.0~ynh9
|
||||
|
||||
|
||||
|
||||
|
@ -23,6 +24,8 @@ Serveur de stockage de fichiers auto-hébergé
|
|||
|
||||
## Avertissements / informations importantes
|
||||
|
||||
Le développement de Droppy a été abandonné par son auteur, et son dépôt de code a été archivé. N'attendez pas de future mise à jour, ni correctifs de sécurité.
|
||||
|
||||
## Configuration
|
||||
|
||||
Comment configurer cette application : un fichier de configuration `/var/www/droppy/config/config.json` en SSH.
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
Development of Droppy has been abandoned by its author, and its repository has been archived. Expect no future updates nor security fixes.
|
||||
|
||||
## Configuration
|
||||
|
||||
How to configure this app: a JSON configuration file with SSH. `/var/www/droppy/config/config.json`.
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
Le développement de Droppy a été abandonné par son auteur, et son dépôt de code a été archivé. N'attendez pas de future mise à jour, ni correctifs de sécurité.
|
||||
|
||||
## Configuration
|
||||
|
||||
Comment configurer cette application : un fichier de configuration `/var/www/droppy/config/config.json` en SSH.
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
"en": "Self-hosted file storage server",
|
||||
"fr": "Serveur de stockage de fichiers auto-hébergé"
|
||||
},
|
||||
"version": "12.2.0~ynh8",
|
||||
"version": "12.2.0~ynh9",
|
||||
"url": "https://github.com/silverwind/droppy",
|
||||
"upstream": {
|
||||
"license": "BSD-2-Clause",
|
||||
|
|
|
@ -36,8 +36,7 @@ data_path=$(ynh_app_setting_get --app=$app --key=data_path)
|
|||
#=================================================
|
||||
ynh_script_progression --message="Validating restoration parameters..." --weight=2
|
||||
|
||||
test ! -d $final_path \
|
||||
|| ynh_die --message="There is already a directory: $final_path "
|
||||
test ! -d $final_path || ynh_die --message="There is already a directory: $final_path "
|
||||
|
||||
#=================================================
|
||||
# STANDARD RESTORATION STEPS
|
||||
|
|
Loading…
Reference in a new issue