mirror of
https://github.com/YunoHost-Apps/borgserver_ynh.git
synced 2024-09-03 20:36:20 +02:00
Merge pull request #67 from YunoHost-Apps/testing
Fix path to borg executable in authorized_keys file
This commit is contained in:
commit
d248ee34ec
10 changed files with 10 additions and 10 deletions
|
@ -21,7 +21,7 @@ Setup a storage space to be used for backup using Borg
|
|||
This app is the "server" part, meant to be installed on the machine providing the backup storage. It is designed to work in combination with the [borg 'client' app](https://apps.yunohost.org/app/borg) installed on a diffent machine.
|
||||
|
||||
|
||||
**Shipped version:** 1.2.8~ynh3
|
||||
**Shipped version:** 1.2.8~ynh4
|
||||
## Documentation and resources
|
||||
|
||||
- Official app website: <https://www.borgbackup.org/>
|
||||
|
|
|
@ -21,7 +21,7 @@ Setup a storage space to be used for backup using Borg
|
|||
This app is the "server" part, meant to be installed on the machine providing the backup storage. It is designed to work in combination with the [borg 'client' app](https://apps.yunohost.org/app/borg) installed on a diffent machine.
|
||||
|
||||
|
||||
**Versión actual:** 1.2.8~ynh3
|
||||
**Versión actual:** 1.2.8~ynh4
|
||||
## Documentaciones y recursos
|
||||
|
||||
- Sitio web oficial: <https://www.borgbackup.org/>
|
||||
|
|
|
@ -21,7 +21,7 @@ Setup a storage space to be used for backup using Borg
|
|||
This app is the "server" part, meant to be installed on the machine providing the backup storage. It is designed to work in combination with the [borg 'client' app](https://apps.yunohost.org/app/borg) installed on a diffent machine.
|
||||
|
||||
|
||||
**Paketatutako bertsioa:** 1.2.8~ynh3
|
||||
**Paketatutako bertsioa:** 1.2.8~ynh4
|
||||
## Dokumentazioa eta baliabideak
|
||||
|
||||
- Aplikazioaren webgune ofiziala: <https://www.borgbackup.org/>
|
||||
|
|
|
@ -21,7 +21,7 @@ Setup a storage space to be used for backup using Borg
|
|||
This app is the "server" part, meant to be installed on the machine providing the backup storage. It is designed to work in combination with the [borg 'client' app](https://apps.yunohost.org/app/borg) installed on a diffent machine.
|
||||
|
||||
|
||||
**Version incluse :** 1.2.8~ynh3
|
||||
**Version incluse :** 1.2.8~ynh4
|
||||
## Documentations et ressources
|
||||
|
||||
- Site officiel de l’app : <https://www.borgbackup.org/>
|
||||
|
|
|
@ -21,7 +21,7 @@ Setup a storage space to be used for backup using Borg
|
|||
This app is the "server" part, meant to be installed on the machine providing the backup storage. It is designed to work in combination with the [borg 'client' app](https://apps.yunohost.org/app/borg) installed on a diffent machine.
|
||||
|
||||
|
||||
**Versión proporcionada:** 1.2.8~ynh3
|
||||
**Versión proporcionada:** 1.2.8~ynh4
|
||||
## Documentación e recursos
|
||||
|
||||
- Web oficial da app: <https://www.borgbackup.org/>
|
||||
|
|
|
@ -21,7 +21,7 @@ Setup a storage space to be used for backup using Borg
|
|||
This app is the "server" part, meant to be installed on the machine providing the backup storage. It is designed to work in combination with the [borg 'client' app](https://apps.yunohost.org/app/borg) installed on a diffent machine.
|
||||
|
||||
|
||||
**Versi terkirim:** 1.2.8~ynh3
|
||||
**Versi terkirim:** 1.2.8~ynh4
|
||||
## Dokumentasi dan sumber daya
|
||||
|
||||
- Website aplikasi resmi: <https://www.borgbackup.org/>
|
||||
|
|
|
@ -21,7 +21,7 @@ Setup a storage space to be used for backup using Borg
|
|||
This app is the "server" part, meant to be installed on the machine providing the backup storage. It is designed to work in combination with the [borg 'client' app](https://apps.yunohost.org/app/borg) installed on a diffent machine.
|
||||
|
||||
|
||||
**Поставляемая версия:** 1.2.8~ynh3
|
||||
**Поставляемая версия:** 1.2.8~ynh4
|
||||
## Документация и ресурсы
|
||||
|
||||
- Официальный веб-сайт приложения: <https://www.borgbackup.org/>
|
||||
|
|
|
@ -21,7 +21,7 @@ Setup a storage space to be used for backup using Borg
|
|||
This app is the "server" part, meant to be installed on the machine providing the backup storage. It is designed to work in combination with the [borg 'client' app](https://apps.yunohost.org/app/borg) installed on a diffent machine.
|
||||
|
||||
|
||||
**分发版本:** 1.2.8~ynh3
|
||||
**分发版本:** 1.2.8~ynh4
|
||||
## 文档与资源
|
||||
|
||||
- 官方应用网站: <https://www.borgbackup.org/>
|
||||
|
|
|
@ -7,7 +7,7 @@ name = "Borg Server"
|
|||
description.en = "Offer backup storage to a friend"
|
||||
description.fr = "Offrez un espace de stockage à un⋅e ami⋅e"
|
||||
|
||||
version = "1.2.8~ynh3"
|
||||
version = "1.2.8~ynh4"
|
||||
|
||||
maintainers = ["ljf"]
|
||||
|
||||
|
|
|
@ -25,7 +25,7 @@ create_ssh_config() {
|
|||
if [[ -n "$quota" ]]; then
|
||||
extra="--storage-quota $quota"
|
||||
fi
|
||||
command="borg serve $extra --restrict-to-repository $repository"
|
||||
command="$install_dir/venv/bin/borg serve $extra --restrict-to-repository $repository"
|
||||
ssh_opts="command=\"$command\",no-pty,no-agent-forwarding,no-port-forwarding,no-X11-forwarding,no-user-rc"
|
||||
|
||||
mkdir -p "$ssh_dir"
|
||||
|
|
Loading…
Reference in a new issue