mirror of
https://github.com/YunoHost/doc.git
synced 2024-09-03 20:06:26 +02:00
Merge branch 'master' into master
This commit is contained in:
commit
4d78b71080
9 changed files with 162 additions and 138 deletions
|
@ -13,9 +13,9 @@ In the context of self-hosting, backups are an important element to compensate f
|
||||||
|
|
||||||
### Backup
|
### Backup
|
||||||
|
|
||||||
YunoHost comes with a backup system, that allows to backup (and restore) system configurations and data (e.g. mails) and apps if they support it.
|
YunoHost comes with a backup system, that allows you to backup (and restore) system configurations and data (e.g. emails) and apps if they support it.
|
||||||
|
|
||||||
You can manage backups either from the command line (`yunohost backup --help`) or from the web administration (in the Backups section) though some features are not yet available in the webadmin.
|
You can manage backups either from the command line (`yunohost backup --help`) or from the web administration (in the Backups section), though some features are not yet available in the webadmin.
|
||||||
|
|
||||||
The current default method consists in creating a `.tar` archive containing all relevant files.
|
The current default method consists in creating a `.tar` archive containing all relevant files.
|
||||||
|
|
||||||
|
@ -24,14 +24,14 @@ The current default method consists in creating a `.tar` archive containing all
|
||||||
[ui-tabs position="top-left" active="0" theme="lite"]
|
[ui-tabs position="top-left" active="0" theme="lite"]
|
||||||
[ui-tab title="From the webadmin"]
|
[ui-tab title="From the webadmin"]
|
||||||
|
|
||||||
You can easily create backup archives from the webadmin by going in `Backups > Local storage` and clicking on `New backup`. You will then be asked to select which configuration, data and apps you want to backup.
|
You can easily create backup archives from the webadmin by going to `Backups > Local storage` and clicking on `New backup`. You will then be asked to select which configuration, data and apps you want to backup.
|
||||||
|
|
||||||
![picture of YunoHost's backup pannel](image://backup.png)
|
![picture of YunoHost's backup pannel](image://backup.png)
|
||||||
|
|
||||||
[/ui-tab]
|
[/ui-tab]
|
||||||
[ui-tab title="From the command line"]
|
[ui-tab title="From the command line"]
|
||||||
|
|
||||||
You can create a new backup archive with the command line. Here are a few simple example of commands and their corresponding behavior:
|
You can create a new backup archive from the command line. Here are a few simple examples of commands and their corresponding behavior:
|
||||||
|
|
||||||
- Backing up everything (all system parts and apps):
|
- Backing up everything (all system parts and apps):
|
||||||
|
|
||||||
|
@ -51,19 +51,19 @@ You can create a new backup archive with the command line. Here are a few simple
|
||||||
yunohost backup create --apps wordpress shaarli
|
yunohost backup create --apps wordpress shaarli
|
||||||
```
|
```
|
||||||
|
|
||||||
- Backing up only mails
|
- Backing up only emails
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
yunohost backup create --system data_mail
|
yunohost backup create --system data_mail
|
||||||
```
|
```
|
||||||
|
|
||||||
- Backing up mails and wordpress
|
- Backing up emails and wordpress
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
yunohost backup create --system data_mail --apps wordpress
|
yunohost backup create --system data_mail --apps wordpress
|
||||||
```
|
```
|
||||||
|
|
||||||
For more informations and options about backup creation, consult `yunohost backup create --help`. You can also list system parts that can be backuped with `yunohost hook list backup`.
|
For more information and options about backup creation, consult `yunohost backup create --help`. You can also list the system parts that can be backed up with `yunohost hook list backup`.
|
||||||
[/ui-tab]
|
[/ui-tab]
|
||||||
[/ui-tabs]
|
[/ui-tabs]
|
||||||
|
|
||||||
|
@ -71,7 +71,7 @@ For more informations and options about backup creation, consult `yunohost backu
|
||||||
|
|
||||||
[ui-tabs position="top-left" active="0" theme="lite"]
|
[ui-tabs position="top-left" active="0" theme="lite"]
|
||||||
[ui-tab title="From the webadmin"]
|
[ui-tab title="From the webadmin"]
|
||||||
After creating backups, it is possible to list and inspect them using the corresponding views in the web administration interface. A button offers to download the archive. If the archive is larger than 3GB, it may be better to proceed via SFTP.
|
After creating backups, it is possible to list and inspect them using the corresponding views in the web administration interface. A button allows you to download the archive. If the archive is larger than 3GB, it may be better to proceed via SFTP.
|
||||||
|
|
||||||
`Backup > Local Archives > <Archive name> > Download`
|
`Backup > Local Archives > <Archive name> > Download`
|
||||||
|
|
||||||
|
@ -93,14 +93,14 @@ scp admin@your.domain.tld:/home/yunohost.backup/archives/<archive_name>.tar ./
|
||||||
[/ui-tab]
|
[/ui-tab]
|
||||||
[/ui-tabs]
|
[/ui-tabs]
|
||||||
|
|
||||||
! Don't forget to store your backup in a different place than your server.
|
! Don't forget to store your backup in a different place to your server.
|
||||||
|
|
||||||
|
|
||||||
!!! If you want, you can connect an external disk to your server so that the archives arrive directly on it. See this guide for [Add an external storage to your server](/external_storage)
|
!!! If you want, you can connect an external disk to your server so that the archives arrive directly on it. See this guide to [Adding external storage to your server](/external_storage)
|
||||||
|
|
||||||
### Testing
|
### Testing
|
||||||
|
|
||||||
You should regularly test your backups by at least listing the contents of the archives and checking the weight of the associated data. It is best to practice restoring regularly.
|
You should regularly test your backups by at least listing the contents of the archives and checking the size of the associated data. It is best to practice restoring regularly.
|
||||||
```bash
|
```bash
|
||||||
# List the files
|
# List the files
|
||||||
tar -tvf /home/yunohost.backup/archives/ARCHIVE.tar | less
|
tar -tvf /home/yunohost.backup/archives/ARCHIVE.tar | less
|
||||||
|
@ -128,7 +128,7 @@ Go in `Backup > Local storage` and select your archive. You can then select whic
|
||||||
|
|
||||||
From the command line, you can run `yunohost backup list` to get the available archive names. They are basically their file name without extension.
|
From the command line, you can run `yunohost backup list` to get the available archive names. They are basically their file name without extension.
|
||||||
|
|
||||||
You can then run `yunohost backup restore <archivename>` (hence without its `.tar` extension) to restore an archive. As for `yunohost backup create`, this will restore everything in the archive by default. If you want to restore only specific items, you can use for instance `yunohost backup restore <archivename> --apps wordpress` which will restore only the wordpress app.
|
You can then run `yunohost backup restore <archivename>` (hence without its `.tar` extension) to restore an archive. As for `yunohost backup create`, this will restore everything in the archive by default. If you want to restore only specific items, you can use something like `yunohost backup restore <archivename> --apps wordpress`, which will restore only the wordpress app.
|
||||||
|
|
||||||
!!! In the case of a complete restoration, it is possible to restore instead of launching the initial configuration.
|
!!! In the case of a complete restoration, it is possible to restore instead of launching the initial configuration.
|
||||||
[/ui-tab]
|
[/ui-tab]
|
||||||
|
@ -138,7 +138,7 @@ To restore an app, the domain on which it was installed should already be config
|
||||||
|
|
||||||
#### Upload an archive
|
#### Upload an archive
|
||||||
|
|
||||||
In many cases, the archive is not on the server on which you want to restore it. So it has to be uploaded, which depending on its weight can take more or less time.
|
In many cases, the archive is not on the server on which you want to restore it. So it has to be uploaded, which depending on its size can take more or less time.
|
||||||
|
|
||||||
[ui-tabs position="top-left" active="0" theme="lite"]
|
[ui-tabs position="top-left" active="0" theme="lite"]
|
||||||
[ui-tab title="With an SFTP client"]
|
[ui-tab title="With an SFTP client"]
|
||||||
|
|
|
@ -9,20 +9,20 @@ routes:
|
||||||
|
|
||||||
In order to make self-hosting as accessible as possible, the YunoHost Project provides a *free* and *automatically configured* domain name service. By using this service, you won't have to [configure DNS records](/dns_config) yourself, which can be tedious and technical.
|
In order to make self-hosting as accessible as possible, the YunoHost Project provides a *free* and *automatically configured* domain name service. By using this service, you won't have to [configure DNS records](/dns_config) yourself, which can be tedious and technical.
|
||||||
|
|
||||||
The following (sub)domains are proposed:
|
The following (sub)domains are offered:
|
||||||
- `whateveryouwant.nohost.me`;
|
- `whateveryouwant.nohost.me`;
|
||||||
- `whateveryouwant.noho.st`;
|
- `whateveryouwant.noho.st`;
|
||||||
- `whateveryouwant.ynh.fr`.
|
- `whateveryouwant.ynh.fr`.
|
||||||
|
|
||||||
To use this service, you simply have to choose such a domain during the post-installation. It will then be automatically configured by YunoHost!
|
To use this service, you simply have to choose such a domain during the post-installation set up. It will then be automatically configured by YunoHost!
|
||||||
|
|
||||||
!!! As a fairness measure, each instance may only have **one such domain** setup at any given time.
|
!!! As a fairness measure, each instance may only have **one such domain** setup at any given time.
|
||||||
|
|
||||||
### Subdomains
|
### Subdomains
|
||||||
|
|
||||||
The `nohost.me`, `noho.st` and `ynh.fr` domain service does allow the creation of subdomains.
|
The `nohost.me`, `noho.st` and `ynh.fr` domain service allows the creation of subdomains.
|
||||||
|
|
||||||
YunoHost allows the installation of applications on subdomains (for example, having the Nextcloud application accessible from the `cloud.mydomain.org` address), this feature is also allowed with the `nohost.me`, `noho.st` and `ynh.fr` domains and so it is possible to have a subdomain such as `my.application.mydomain.nohost.me`. to create a subdomain for `nohost.me`, `noho.st` and `ynh.fr` domain you just have to add the subdomain to yunohost like any other domains.
|
YunoHost allows the installation of applications on subdomains (for example, having the Nextcloud application accessible from the `cloud.mydomain.org` address), this feature is also allowed with the `nohost.me`, `noho.st` and `ynh.fr` domains and so it is possible to have a subdomain such as `my.application.mydomain.nohost.me`. To create a subdomain on `nohost.me`, `noho.st` and `ynh.fr`, you just have to add the subdomain to yunohost like any other domains.
|
||||||
|
|
||||||
|
|
||||||
### Adding a nohost.me, noho.st or ynh.fr domain after the post-installation
|
### Adding a nohost.me, noho.st or ynh.fr domain after the post-installation
|
||||||
|
|
|
@ -14,13 +14,13 @@ routes:
|
||||||
- '/autodns'
|
- '/autodns'
|
||||||
---
|
---
|
||||||
|
|
||||||
Since version 4.3, YunoHost includes a mecanism to interface your server with your DNS registrar API, with the purpos of simplifying and automatizing DNS records registration and maintenance.
|
Since version 4.3, YunoHost includes a mechanism to interface your server with your DNS registrar API, with the purpose of simplifying and automatizing DNS records registration and maintenance.
|
||||||
|
|
||||||
The procedure does require an initial configuration where you will need to generate an API key on your registrar's interface.
|
The procedure requires an initial configuration where you need to generate an API key on your registrar's interface.
|
||||||
|
|
||||||
Not all registrars are supported though. So far, the community tested and validated the interface with [Gandi](https://gandi.net) and [OVH](https://ovh.com), which are recommended. The interface with other registrar may work but is still considered experimental until we gather feedback from the community.
|
Not all registrars are supported. So far, the community tested and validated the interface with [Gandi](https://gandi.net) and [OVH](https://ovh.com), which are recommended. The interface with other registrars may work, but is still considered experimental until we gather feedback from the community.
|
||||||
|
|
||||||
The list bellow can help you to choose a registrar if you plan to buy a domain name to use it with YunoHost.
|
The list below can help you to choose a registrar if you plan to buy a domain name to use it with YunoHost.
|
||||||
|
|
||||||
|
|
||||||
| Registrar | Compatibility | Easy to obtain an API key | Howto |
|
| Registrar | Compatibility | Easy to obtain an API key | Howto |
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
---
|
---
|
||||||
title: YunoHost administration guide
|
title: Administration guide
|
||||||
template: chapter
|
template: chapter
|
||||||
taxonomy:
|
taxonomy:
|
||||||
category: docs
|
category: docs
|
||||||
|
@ -7,6 +7,6 @@ routes:
|
||||||
default: '/admindoc'
|
default: '/admindoc'
|
||||||
---
|
---
|
||||||
|
|
||||||
### Admin your YunoHost
|
### Administer
|
||||||
|
|
||||||
# Discover selfhosting, how to install and daily use of YunoHost
|
# Learn about self-hosting, how to install and use YunoHost
|
||||||
|
|
|
@ -116,7 +116,7 @@ CASE A:'datadirectory' =>'/media/storage',
|
||||||
CASE B:'datadirectory' =>'/media/storage/nextcloud_data/nextcloud/data',
|
CASE B:'datadirectory' =>'/media/storage/nextcloud_data/nextcloud/data',
|
||||||
```
|
```
|
||||||
|
|
||||||
Back up with `ctrl+x` then `y` or `o` (depending on your server locale).
|
Save it with `ctrl+x` then `y` or `o` (depending on your server locale).
|
||||||
|
|
||||||
Restart the web server:
|
Restart the web server:
|
||||||
|
|
||||||
|
|
|
@ -26,7 +26,7 @@ Le logiciel est disponible sur la plupart des systèmes d'exploitation (GNU/Linu
|
||||||
|
|
||||||
## Configuration
|
## Configuration
|
||||||
|
|
||||||
Pour configurer l'appliation il faut se rendre à l'adresse : `sous.domaine.tld/admin`
|
Pour configurer l'application il faut se rendre à l'adresse : `sous.domaine.tld/admin`
|
||||||
|
|
||||||
## Limitations avec YunoHost
|
## Limitations avec YunoHost
|
||||||
|
|
||||||
|
|
|
@ -25,6 +25,7 @@ You can [contribute to this list by adding something you'd like to be packaged](
|
||||||
| Akaunting | Manage payments/invoices/expenses | [Upstream](https://github.com/akaunting/akaunting) | |
|
| Akaunting | Manage payments/invoices/expenses | [Upstream](https://github.com/akaunting/akaunting) | |
|
||||||
| Anki Sync Server | a personal Anki server |[Upstream](https://github.com/ankicommunity/anki-sync-server) | |
|
| Anki Sync Server | a personal Anki server |[Upstream](https://github.com/ankicommunity/anki-sync-server) | |
|
||||||
| [AnonAddy](https://anonaddy.com/) | Anonymous email forwarding - Create Unlimited Email Aliases For Free | [Upstream](https://github.com/anonaddy/anonaddy) | |
|
| [AnonAddy](https://anonaddy.com/) | Anonymous email forwarding - Create Unlimited Email Aliases For Free | [Upstream](https://github.com/anonaddy/anonaddy) | |
|
||||||
|
| [Ansible Matrix Docker Deploy](https://github.com/spantaleev/matrix-docker-ansible-deploy) | Full Featured Matrix Server Setup with All Bridges and Integrations | [Upstream](https://github.com/spantaleev/matrix-docker-ansible-deploy) | |
|
||||||
| [Apache Superset](https://superset.apache.org/) | Apache Superset is a Data Visualization and Data Exploration Platform | [Upstream](https://github.com/apache/superset) | |
|
| [Apache Superset](https://superset.apache.org/) | Apache Superset is a Data Visualization and Data Exploration Platform | [Upstream](https://github.com/apache/superset) | |
|
||||||
| [askbot](https://askbot.com/) | Questions and answers | | [Package Draft](https://github.com/zamentur/askbot_ynh) |
|
| [askbot](https://askbot.com/) | Questions and answers | | [Package Draft](https://github.com/zamentur/askbot_ynh) |
|
||||||
| [Archivematica](https://www.archivematica.org/) | Mature digital preservation system designed to maintain standards-based, long-term access to collections of digital objects. | [Upstream](https://github.com/artefactual/archivematica) | |
|
| [Archivematica](https://www.archivematica.org/) | Mature digital preservation system designed to maintain standards-based, long-term access to collections of digital objects. | [Upstream](https://github.com/artefactual/archivematica) | |
|
||||||
|
@ -127,6 +128,7 @@ You can [contribute to this list by adding something you'd like to be packaged](
|
||||||
| [Icecast 2](https://www.icecast.org) | | [Upstream](https://gitlab.xiph.org/xiph/icecast-server/) | |
|
| [Icecast 2](https://www.icecast.org) | | [Upstream](https://gitlab.xiph.org/xiph/icecast-server/) | |
|
||||||
| [ikiwiki](https://ikiwiki.info) | | | |
|
| [ikiwiki](https://ikiwiki.info) | | | |
|
||||||
| internetarchive | Offline version of the Internet Archive | [Upstream](https://github.com/internetarchive/dweb-mirror) | [Package Draft](https://github.com/mitra42/internetarchive_ynh) |
|
| internetarchive | Offline version of the Internet Archive | [Upstream](https://github.com/internetarchive/dweb-mirror) | [Package Draft](https://github.com/mitra42/internetarchive_ynh) |
|
||||||
|
| [Inventaire](https://inventaire.io) | a libre collaborative resource mapper powered by open-knowledge, starting with books! 📚 | [Upstream](https://github.com/inventaire/inventaire) | |
|
||||||
| [InvoicePlane](https://invoiceplane.com) | | [Upstream](https://github.com/InvoicePlane/InvoicePlane) | |
|
| [InvoicePlane](https://invoiceplane.com) | | [Upstream](https://github.com/InvoicePlane/InvoicePlane) | |
|
||||||
| [IPFS](https://ipfs.io) | | [Upstream](https://github.com/ipfs/ipfs) | |
|
| [IPFS](https://ipfs.io) | | [Upstream](https://github.com/ipfs/ipfs) | |
|
||||||
| [Isso](https://posativ.org/isso) | Comment server | [Upstream](https://github.com/posativ/isso) | |
|
| [Isso](https://posativ.org/isso) | Comment server | [Upstream](https://github.com/posativ/isso) | |
|
||||||
|
@ -182,6 +184,7 @@ You can [contribute to this list by adding something you'd like to be packaged](
|
||||||
| Museek+ | | [Upstream](https://github.com/eLvErDe/museek-plus) | |
|
| Museek+ | | [Upstream](https://github.com/eLvErDe/museek-plus) | |
|
||||||
| mycryptochat | Encrypted IM | | [Package Draft](https://github.com/mrtino/mycryptochat_ynh) |
|
| mycryptochat | Encrypted IM | | [Package Draft](https://github.com/mrtino/mycryptochat_ynh) |
|
||||||
| mx-puppet-discord | A bridge between Matrix and Discord | [Upstream](https://github.com/matrix-discord/mx-puppet-discord) | |
|
| mx-puppet-discord | A bridge between Matrix and Discord | [Upstream](https://github.com/matrix-discord/mx-puppet-discord) | |
|
||||||
|
| [Nautilus](https://myactivity.stream/) | Turn your website into an ActivityPub profile | [Upstream](https://github.com/aaronpk/Nautilus) | |
|
||||||
| Netrunner | | [Upstream](https://github.com/mtgred/netrunner) | |
|
| Netrunner | | [Upstream](https://github.com/mtgred/netrunner) | |
|
||||||
| nexusoss | Sonatype Nexus Repository manager OSS | | [Package Draft](https://github.com/YunoHost-Apps/nexusoss_ynh) |
|
| nexusoss | Sonatype Nexus Repository manager OSS | | [Package Draft](https://github.com/YunoHost-Apps/nexusoss_ynh) |
|
||||||
| NocoDB | Airtable alternative / turn any SQL db into a smart spreadsheet | [Upstream](https://github.com/nocodb/nocodb) | |
|
| NocoDB | Airtable alternative / turn any SQL db into a smart spreadsheet | [Upstream](https://github.com/nocodb/nocodb) | |
|
||||||
|
@ -249,7 +252,6 @@ You can [contribute to this list by adding something you'd like to be packaged](
|
||||||
| [Retroshare](https://retroshare.cc/) | | [Upstream](https://github.com/RetroShare/RetroShare) | |
|
| [Retroshare](https://retroshare.cc/) | | [Upstream](https://github.com/RetroShare/RetroShare) | |
|
||||||
| [Revolt](https://revolt.chat/) | Chat software similar to Discord | [Upstream](https://github.com/revoltchat) | |
|
| [Revolt](https://revolt.chat/) | Chat software similar to Discord | [Upstream](https://github.com/revoltchat) | |
|
||||||
| [roadiz](https://www.roadiz.io) | Create a modern website | | [Package Draft](https://github.com/YunoHost-Apps/roadiz_ynh) |
|
| [roadiz](https://www.roadiz.io) | Create a modern website | | [Package Draft](https://github.com/YunoHost-Apps/roadiz_ynh) |
|
||||||
| [rocketchat](https://rocket.chat) | A chat platform | | [Package Draft](https://github.com/YunoHost-Apps/rocketchat_ynh) |
|
|
||||||
| rs-short | An URL shortener | [Upstream](https://git.42l.fr/42l/rs-short) | |
|
| rs-short | An URL shortener | [Upstream](https://git.42l.fr/42l/rs-short) | |
|
||||||
| RSS-proxy | RSS-proxy allows you to do create an RSS or ATOM feed of almost any website, just by analyzing just the static HTML structure. | [Upstream](https://github.com/damoeb/rss-proxy) | |
|
| RSS-proxy | RSS-proxy allows you to do create an RSS or ATOM feed of almost any website, just by analyzing just the static HTML structure. | [Upstream](https://github.com/damoeb/rss-proxy) | |
|
||||||
| RSSHub | open source, easy to use, and extensible RSS feed generator. It's capable of generating RSS feeds from pretty much everything | [Upstream](https://github.com/DIYgod/RSSHub) | |
|
| RSSHub | open source, easy to use, and extensible RSS feed generator. It's capable of generating RSS feeds from pretty much everything | [Upstream](https://github.com/DIYgod/RSSHub) | |
|
||||||
|
@ -261,7 +263,6 @@ You can [contribute to this list by adding something you'd like to be packaged](
|
||||||
| [ScenariChain-server](https://download.scenari.software/SCENARIchain-server/) | | | |
|
| [ScenariChain-server](https://download.scenari.software/SCENARIchain-server/) | | | |
|
||||||
| [Schleuder](https://schleuder.org/schleuder/docs/concept.html) | A GPG-enabled mailing list manager | | |
|
| [Schleuder](https://schleuder.org/schleuder/docs/concept.html) | A GPG-enabled mailing list manager | | |
|
||||||
| scm-manager | Share and manage Git, Mercurial and Subversion repositories | | [Package Draft](https://github.com/drfred1981/scm-manager_ynh) |
|
| scm-manager | Share and manage Git, Mercurial and Subversion repositories | | [Package Draft](https://github.com/drfred1981/scm-manager_ynh) |
|
||||||
| scrumblr | Software for notes | | [Package Draft](https://github.com/YunoHost-Apps/scrumblr_ynh) |
|
|
||||||
| [Scuttlebutt Pub](https://www.scuttlebutt.nz/contributing) | | | |
|
| [Scuttlebutt Pub](https://www.scuttlebutt.nz/contributing) | | | |
|
||||||
| [SearXNG](https://searxng.github.io/searxng/) | Fork of SearX, a privacy-respecting metasearch engine | [Upstream](https://github.com/searxng/searxng) | |
|
| [SearXNG](https://searxng.github.io/searxng/) | Fork of SearX, a privacy-respecting metasearch engine | [Upstream](https://github.com/searxng/searxng) | |
|
||||||
| [seenthis](https://www.seenthis.net/) | Short-blogging destiné à la veille d’actualité | | [Package Draft](https://github.com/magikcypress/seenthis_ynh) |
|
| [seenthis](https://www.seenthis.net/) | Short-blogging destiné à la veille d’actualité | | [Package Draft](https://github.com/magikcypress/seenthis_ynh) |
|
||||||
|
@ -318,6 +319,7 @@ You can [contribute to this list by adding something you'd like to be packaged](
|
||||||
| [Twake](https://twake.app/fr)| All of the organizational tools you need to make your projects succeed brought together on one platform.| | |
|
| [Twake](https://twake.app/fr)| All of the organizational tools you need to make your projects succeed brought together on one platform.| | |
|
||||||
| Twister | | [Upstream](https://github.com/miguelfreitas/twister-core/) | |
|
| Twister | | [Upstream](https://github.com/miguelfreitas/twister-core/) | |
|
||||||
| [TwitRSS.me](https://twitrss.me/) | Create RSS feeds from Twitter | [Upstream](https://github.com/ciderpunx/twitrssme) | |
|
| [TwitRSS.me](https://twitrss.me/) | Create RSS feeds from Twitter | [Upstream](https://github.com/ciderpunx/twitrssme) | |
|
||||||
|
| [ultrasonics](https://github.com/XDGFX/ultrasonics) | Sync music playlists between all your music services: Spotify, Deezer, Apple Music, Plex, etc. | [Upstream](https://github.com/XDGFX/ultrasonics) | |
|
||||||
| [umap](https://umap.openstreetmap.fr/) | Cartography software | | [Package Draft](https://github.com/YunoHost-Apps/umap_ynh) |
|
| [umap](https://umap.openstreetmap.fr/) | Cartography software | | [Package Draft](https://github.com/YunoHost-Apps/umap_ynh) |
|
||||||
| [unbound](https://nlnetlabs.nl/projects/unbound/about/) | | | [Package Draft](https://github.com/YunoHost-Apps/unbound_ynh) |
|
| [unbound](https://nlnetlabs.nl/projects/unbound/about/) | | | [Package Draft](https://github.com/YunoHost-Apps/unbound_ynh) |
|
||||||
| [upmpdcli](https://www.lesbonscomptes.com/upmpdcli/) | | [Upstream](https://framagit.org/medoc92/upmpdcli) | |
|
| [upmpdcli](https://www.lesbonscomptes.com/upmpdcli/) | | [Upstream](https://framagit.org/medoc92/upmpdcli) | |
|
||||||
|
|
|
@ -7,7 +7,7 @@ routes:
|
||||||
default: '/packaging_apps_helpers'
|
default: '/packaging_apps_helpers'
|
||||||
---
|
---
|
||||||
|
|
||||||
Doc auto-generated by [this script](https://github.com/YunoHost/yunohost/blob/71a08c09ea5099d7951d8d7badf0ed3bc0a02cf2/doc/generate_helper_doc.py) on 12/08/2021 (YunoHost version 4.3.4.2)
|
Doc auto-generated by [this script](https://github.com/YunoHost/yunohost/blob/509ba1e8a28e0be598aa0617eda06669b7b0f1d8/doc/generate_helper_doc.py) on 12/29/2021 (YunoHost version 4.3.5)
|
||||||
|
|
||||||
|
|
||||||
## APT
|
## APT
|
||||||
|
@ -29,7 +29,7 @@ Requires YunoHost version 2.2.4 or higher.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/71a08c09ea5099d7951d8d7badf0ed3bc0a02cf2/data/helpers.d/apt#L53)
|
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/509ba1e8a28e0be598aa0617eda06669b7b0f1d8/data/helpers.d/apt#L53)
|
||||||
[/details]
|
[/details]
|
||||||
----------------
|
----------------
|
||||||
|
|
||||||
|
@ -50,7 +50,7 @@ Requires YunoHost version 2.2.4 or higher.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/71a08c09ea5099d7951d8d7badf0ed3bc0a02cf2/data/helpers.d/apt#L75)
|
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/509ba1e8a28e0be598aa0617eda06669b7b0f1d8/data/helpers.d/apt#L75)
|
||||||
[/details]
|
[/details]
|
||||||
----------------
|
----------------
|
||||||
|
|
||||||
|
@ -64,7 +64,7 @@ Requires YunoHost version 2.2.4 or higher.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/71a08c09ea5099d7951d8d7badf0ed3bc0a02cf2/data/helpers.d/apt#L107)
|
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/509ba1e8a28e0be598aa0617eda06669b7b0f1d8/data/helpers.d/apt#L107)
|
||||||
[/details]
|
[/details]
|
||||||
----------------
|
----------------
|
||||||
|
|
||||||
|
@ -81,7 +81,7 @@ Requires YunoHost version 2.2.4 or higher.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/71a08c09ea5099d7951d8d7badf0ed3bc0a02cf2/data/helpers.d/apt#L117)
|
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/509ba1e8a28e0be598aa0617eda06669b7b0f1d8/data/helpers.d/apt#L117)
|
||||||
[/details]
|
[/details]
|
||||||
----------------
|
----------------
|
||||||
|
|
||||||
|
@ -98,7 +98,7 @@ Requires YunoHost version 2.2.4 or higher.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/71a08c09ea5099d7951d8d7badf0ed3bc0a02cf2/data/helpers.d/apt#L128)
|
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/509ba1e8a28e0be598aa0617eda06669b7b0f1d8/data/helpers.d/apt#L128)
|
||||||
[/details]
|
[/details]
|
||||||
----------------
|
----------------
|
||||||
|
|
||||||
|
@ -115,7 +115,7 @@ Requires YunoHost version 2.2.4 or higher.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/71a08c09ea5099d7951d8d7badf0ed3bc0a02cf2/data/helpers.d/apt#L138)
|
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/509ba1e8a28e0be598aa0617eda06669b7b0f1d8/data/helpers.d/apt#L138)
|
||||||
[/details]
|
[/details]
|
||||||
----------------
|
----------------
|
||||||
|
|
||||||
|
@ -132,7 +132,7 @@ Requires YunoHost version 2.7.2 or higher.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/71a08c09ea5099d7951d8d7badf0ed3bc0a02cf2/data/helpers.d/apt#L148)
|
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/509ba1e8a28e0be598aa0617eda06669b7b0f1d8/data/helpers.d/apt#L148)
|
||||||
[/details]
|
[/details]
|
||||||
----------------
|
----------------
|
||||||
|
|
||||||
|
@ -154,7 +154,7 @@ Requires YunoHost version 2.6.4 or higher.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/71a08c09ea5099d7951d8d7badf0ed3bc0a02cf2/data/helpers.d/apt#L224)
|
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/509ba1e8a28e0be598aa0617eda06669b7b0f1d8/data/helpers.d/apt#L224)
|
||||||
[/details]
|
[/details]
|
||||||
----------------
|
----------------
|
||||||
|
|
||||||
|
@ -171,7 +171,7 @@ Requires YunoHost version 3.8.1 or higher.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/71a08c09ea5099d7951d8d7badf0ed3bc0a02cf2/data/helpers.d/apt#L355)
|
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/509ba1e8a28e0be598aa0617eda06669b7b0f1d8/data/helpers.d/apt#L355)
|
||||||
[/details]
|
[/details]
|
||||||
----------------
|
----------------
|
||||||
|
|
||||||
|
@ -187,7 +187,7 @@ Requires YunoHost version 2.6.4 or higher.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/71a08c09ea5099d7951d8d7badf0ed3bc0a02cf2/data/helpers.d/apt#L374)
|
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/509ba1e8a28e0be598aa0617eda06669b7b0f1d8/data/helpers.d/apt#L374)
|
||||||
[/details]
|
[/details]
|
||||||
----------------
|
----------------
|
||||||
|
|
||||||
|
@ -207,7 +207,7 @@ Requires YunoHost version 3.8.1 or higher.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/71a08c09ea5099d7951d8d7badf0ed3bc0a02cf2/data/helpers.d/apt#L405)
|
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/509ba1e8a28e0be598aa0617eda06669b7b0f1d8/data/helpers.d/apt#L405)
|
||||||
[/details]
|
[/details]
|
||||||
----------------
|
----------------
|
||||||
|
|
||||||
|
@ -281,7 +281,7 @@ Requires YunoHost version 3.5.0 or higher for the argument `--not_mandatory`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/71a08c09ea5099d7951d8d7badf0ed3bc0a02cf2/data/helpers.d/backup#L65)
|
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/509ba1e8a28e0be598aa0617eda06669b7b0f1d8/data/helpers.d/backup#L65)
|
||||||
[/details]
|
[/details]
|
||||||
----------------
|
----------------
|
||||||
|
|
||||||
|
@ -295,7 +295,7 @@ Requires YunoHost version 2.6.4 or higher.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/71a08c09ea5099d7951d8d7badf0ed3bc0a02cf2/data/helpers.d/backup#L180)
|
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/509ba1e8a28e0be598aa0617eda06669b7b0f1d8/data/helpers.d/backup#L180)
|
||||||
[/details]
|
[/details]
|
||||||
----------------
|
----------------
|
||||||
|
|
||||||
|
@ -340,7 +340,7 @@ Requires YunoHost version 3.5.0 or higher for the argument --not_mandatory
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/71a08c09ea5099d7951d8d7badf0ed3bc0a02cf2/data/helpers.d/backup#L239)
|
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/509ba1e8a28e0be598aa0617eda06669b7b0f1d8/data/helpers.d/backup#L239)
|
||||||
[/details]
|
[/details]
|
||||||
----------------
|
----------------
|
||||||
|
|
||||||
|
@ -359,7 +359,7 @@ Requires YunoHost version 2.6.4 or higher.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/71a08c09ea5099d7951d8d7badf0ed3bc0a02cf2/data/helpers.d/backup#L311)
|
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/509ba1e8a28e0be598aa0617eda06669b7b0f1d8/data/helpers.d/backup#L311)
|
||||||
[/details]
|
[/details]
|
||||||
----------------
|
----------------
|
||||||
|
|
||||||
|
@ -381,7 +381,7 @@ Requires YunoHost version 2.6.4 or higher.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/71a08c09ea5099d7951d8d7badf0ed3bc0a02cf2/data/helpers.d/backup#L355)
|
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/509ba1e8a28e0be598aa0617eda06669b7b0f1d8/data/helpers.d/backup#L355)
|
||||||
[/details]
|
[/details]
|
||||||
----------------
|
----------------
|
||||||
|
|
||||||
|
@ -400,7 +400,7 @@ Requires YunoHost version 3.3.1 or higher.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/71a08c09ea5099d7951d8d7badf0ed3bc0a02cf2/data/helpers.d/backup#L386)
|
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/509ba1e8a28e0be598aa0617eda06669b7b0f1d8/data/helpers.d/backup#L386)
|
||||||
[/details]
|
[/details]
|
||||||
----------------
|
----------------
|
||||||
|
|
||||||
|
@ -423,7 +423,7 @@ Requires YunoHost version 2.7.2 or higher.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/71a08c09ea5099d7951d8d7badf0ed3bc0a02cf2/data/helpers.d/backup#L421)
|
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/509ba1e8a28e0be598aa0617eda06669b7b0f1d8/data/helpers.d/backup#L421)
|
||||||
[/details]
|
[/details]
|
||||||
----------------
|
----------------
|
||||||
|
|
||||||
|
@ -446,7 +446,7 @@ Requires YunoHost version 2.7.2 or higher.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/71a08c09ea5099d7951d8d7badf0ed3bc0a02cf2/data/helpers.d/backup#L469)
|
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/509ba1e8a28e0be598aa0617eda06669b7b0f1d8/data/helpers.d/backup#L469)
|
||||||
[/details]
|
[/details]
|
||||||
----------------
|
----------------
|
||||||
|
|
||||||
|
@ -524,7 +524,7 @@ Requires YunoHost version 4.1.0 or higher.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/71a08c09ea5099d7951d8d7badf0ed3bc0a02cf2/data/helpers.d/fail2ban#L65)
|
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/509ba1e8a28e0be598aa0617eda06669b7b0f1d8/data/helpers.d/fail2ban#L65)
|
||||||
[/details]
|
[/details]
|
||||||
----------------
|
----------------
|
||||||
|
|
||||||
|
@ -538,7 +538,7 @@ Requires YunoHost version 3.5.0 or higher.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/71a08c09ea5099d7951d8d7badf0ed3bc0a02cf2/data/helpers.d/fail2ban#L124)
|
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/509ba1e8a28e0be598aa0617eda06669b7b0f1d8/data/helpers.d/fail2ban#L124)
|
||||||
[/details]
|
[/details]
|
||||||
----------------
|
----------------
|
||||||
|
|
||||||
|
@ -566,7 +566,7 @@ Requires YunoHost version 3.8.1 or higher.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/71a08c09ea5099d7951d8d7badf0ed3bc0a02cf2/data/helpers.d/hardware#L13)
|
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/509ba1e8a28e0be598aa0617eda06669b7b0f1d8/data/helpers.d/hardware#L13)
|
||||||
[/details]
|
[/details]
|
||||||
----------------
|
----------------
|
||||||
|
|
||||||
|
@ -589,7 +589,7 @@ Requires YunoHost version 3.8.1 or higher.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/71a08c09ea5099d7951d8d7badf0ed3bc0a02cf2/data/helpers.d/hardware#L75)
|
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/509ba1e8a28e0be598aa0617eda06669b7b0f1d8/data/helpers.d/hardware#L75)
|
||||||
[/details]
|
[/details]
|
||||||
----------------
|
----------------
|
||||||
|
|
||||||
|
@ -610,7 +610,7 @@ Requires YunoHost version 2.4.0 or higher.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/71a08c09ea5099d7951d8d7badf0ed3bc0a02cf2/data/helpers.d/logging#L10)
|
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/509ba1e8a28e0be598aa0617eda06669b7b0f1d8/data/helpers.d/logging#L10)
|
||||||
[/details]
|
[/details]
|
||||||
----------------
|
----------------
|
||||||
|
|
||||||
|
@ -627,7 +627,7 @@ Requires YunoHost version 3.2.0 or higher.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/71a08c09ea5099d7951d8d7badf0ed3bc0a02cf2/data/helpers.d/logging#L30)
|
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/509ba1e8a28e0be598aa0617eda06669b7b0f1d8/data/helpers.d/logging#L30)
|
||||||
[/details]
|
[/details]
|
||||||
----------------
|
----------------
|
||||||
|
|
||||||
|
@ -644,7 +644,7 @@ Requires YunoHost version 3.2.0 or higher.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/71a08c09ea5099d7951d8d7badf0ed3bc0a02cf2/data/helpers.d/logging#L56)
|
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/509ba1e8a28e0be598aa0617eda06669b7b0f1d8/data/helpers.d/logging#L56)
|
||||||
[/details]
|
[/details]
|
||||||
----------------
|
----------------
|
||||||
|
|
||||||
|
@ -661,7 +661,7 @@ Requires YunoHost version 3.2.0 or higher.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/71a08c09ea5099d7951d8d7badf0ed3bc0a02cf2/data/helpers.d/logging#L73)
|
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/509ba1e8a28e0be598aa0617eda06669b7b0f1d8/data/helpers.d/logging#L73)
|
||||||
[/details]
|
[/details]
|
||||||
----------------
|
----------------
|
||||||
|
|
||||||
|
@ -680,7 +680,7 @@ Requires YunoHost version 3.2.0 or higher.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/71a08c09ea5099d7951d8d7badf0ed3bc0a02cf2/data/helpers.d/logging#L92)
|
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/509ba1e8a28e0be598aa0617eda06669b7b0f1d8/data/helpers.d/logging#L92)
|
||||||
[/details]
|
[/details]
|
||||||
----------------
|
----------------
|
||||||
|
|
||||||
|
@ -699,7 +699,7 @@ Requires YunoHost version 3.2.0 or higher.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/71a08c09ea5099d7951d8d7badf0ed3bc0a02cf2/data/helpers.d/logging#L113)
|
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/509ba1e8a28e0be598aa0617eda06669b7b0f1d8/data/helpers.d/logging#L113)
|
||||||
[/details]
|
[/details]
|
||||||
----------------
|
----------------
|
||||||
|
|
||||||
|
@ -718,7 +718,7 @@ Requires YunoHost version 3.2.0 or higher.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/71a08c09ea5099d7951d8d7badf0ed3bc0a02cf2/data/helpers.d/logging#L134)
|
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/509ba1e8a28e0be598aa0617eda06669b7b0f1d8/data/helpers.d/logging#L134)
|
||||||
[/details]
|
[/details]
|
||||||
----------------
|
----------------
|
||||||
|
|
||||||
|
@ -737,7 +737,7 @@ Requires YunoHost version 3.2.0 or higher.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/71a08c09ea5099d7951d8d7badf0ed3bc0a02cf2/data/helpers.d/logging#L155)
|
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/509ba1e8a28e0be598aa0617eda06669b7b0f1d8/data/helpers.d/logging#L155)
|
||||||
[/details]
|
[/details]
|
||||||
----------------
|
----------------
|
||||||
|
|
||||||
|
@ -756,7 +756,7 @@ Requires YunoHost version 3.2.0 or higher.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/71a08c09ea5099d7951d8d7badf0ed3bc0a02cf2/data/helpers.d/logging#L176)
|
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/509ba1e8a28e0be598aa0617eda06669b7b0f1d8/data/helpers.d/logging#L176)
|
||||||
[/details]
|
[/details]
|
||||||
----------------
|
----------------
|
||||||
|
|
||||||
|
@ -776,7 +776,7 @@ Requires YunoHost version 3.5.0 or higher.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/71a08c09ea5099d7951d8d7badf0ed3bc0a02cf2/data/helpers.d/logging#L237)
|
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/509ba1e8a28e0be598aa0617eda06669b7b0f1d8/data/helpers.d/logging#L237)
|
||||||
[/details]
|
[/details]
|
||||||
----------------
|
----------------
|
||||||
|
|
||||||
|
@ -791,7 +791,7 @@ Requires YunoHost version 3.6.0 or higher.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/71a08c09ea5099d7951d8d7badf0ed3bc0a02cf2/data/helpers.d/logging#L318)
|
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/509ba1e8a28e0be598aa0617eda06669b7b0f1d8/data/helpers.d/logging#L318)
|
||||||
[/details]
|
[/details]
|
||||||
----------------
|
----------------
|
||||||
|
|
||||||
|
@ -820,7 +820,7 @@ Requires YunoHost version 3.2.0 or higher for the argument `--specific_user`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/71a08c09ea5099d7951d8d7badf0ed3bc0a02cf2/data/helpers.d/logrotate#L18)
|
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/509ba1e8a28e0be598aa0617eda06669b7b0f1d8/data/helpers.d/logrotate#L18)
|
||||||
[/details]
|
[/details]
|
||||||
----------------
|
----------------
|
||||||
|
|
||||||
|
@ -834,7 +834,7 @@ Requires YunoHost version 2.6.4 or higher.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/71a08c09ea5099d7951d8d7badf0ed3bc0a02cf2/data/helpers.d/logrotate#L105)
|
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/509ba1e8a28e0be598aa0617eda06669b7b0f1d8/data/helpers.d/logrotate#L100)
|
||||||
[/details]
|
[/details]
|
||||||
----------------
|
----------------
|
||||||
|
|
||||||
|
@ -851,7 +851,7 @@ Requires YunoHost version 4.2 or higher.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/71a08c09ea5099d7951d8d7badf0ed3bc0a02cf2/data/helpers.d/multimedia#L11)
|
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/509ba1e8a28e0be598aa0617eda06669b7b0f1d8/data/helpers.d/multimedia#L11)
|
||||||
[/details]
|
[/details]
|
||||||
----------------
|
----------------
|
||||||
|
|
||||||
|
@ -871,7 +871,7 @@ Requires YunoHost version 4.2 or higher.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/71a08c09ea5099d7951d8d7badf0ed3bc0a02cf2/data/helpers.d/multimedia#L64)
|
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/509ba1e8a28e0be598aa0617eda06669b7b0f1d8/data/helpers.d/multimedia#L64)
|
||||||
[/details]
|
[/details]
|
||||||
----------------
|
----------------
|
||||||
|
|
||||||
|
@ -888,7 +888,7 @@ Requires YunoHost version 4.2 or higher.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/71a08c09ea5099d7951d8d7badf0ed3bc0a02cf2/data/helpers.d/multimedia#L93)
|
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/509ba1e8a28e0be598aa0617eda06669b7b0f1d8/data/helpers.d/multimedia#L93)
|
||||||
[/details]
|
[/details]
|
||||||
----------------
|
----------------
|
||||||
|
|
||||||
|
@ -921,7 +921,7 @@ Requires YunoHost version 2.2.4 or higher.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/71a08c09ea5099d7951d8d7badf0ed3bc0a02cf2/data/helpers.d/mysql#L15)
|
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/509ba1e8a28e0be598aa0617eda06669b7b0f1d8/data/helpers.d/mysql#L15)
|
||||||
[/details]
|
[/details]
|
||||||
----------------
|
----------------
|
||||||
|
|
||||||
|
@ -939,7 +939,7 @@ Requires YunoHost version 2.2.4 or higher.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/71a08c09ea5099d7951d8d7badf0ed3bc0a02cf2/data/helpers.d/mysql#L36)
|
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/509ba1e8a28e0be598aa0617eda06669b7b0f1d8/data/helpers.d/mysql#L36)
|
||||||
[/details]
|
[/details]
|
||||||
----------------
|
----------------
|
||||||
|
|
||||||
|
@ -957,7 +957,7 @@ Requires YunoHost version 2.2.4 or higher.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/71a08c09ea5099d7951d8d7badf0ed3bc0a02cf2/data/helpers.d/mysql#L60)
|
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/509ba1e8a28e0be598aa0617eda06669b7b0f1d8/data/helpers.d/mysql#L60)
|
||||||
[/details]
|
[/details]
|
||||||
----------------
|
----------------
|
||||||
|
|
||||||
|
@ -978,7 +978,7 @@ Requires YunoHost version 2.2.4 or higher.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/71a08c09ea5099d7951d8d7badf0ed3bc0a02cf2/data/helpers.d/mysql#L128)
|
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/509ba1e8a28e0be598aa0617eda06669b7b0f1d8/data/helpers.d/mysql#L128)
|
||||||
[/details]
|
[/details]
|
||||||
----------------
|
----------------
|
||||||
|
|
||||||
|
@ -997,7 +997,7 @@ Requires YunoHost version 2.2.4 or higher.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/71a08c09ea5099d7951d8d7badf0ed3bc0a02cf2/data/helpers.d/mysql#L160)
|
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/509ba1e8a28e0be598aa0617eda06669b7b0f1d8/data/helpers.d/mysql#L160)
|
||||||
[/details]
|
[/details]
|
||||||
----------------
|
----------------
|
||||||
|
|
||||||
|
@ -1019,7 +1019,7 @@ Requires YunoHost version 2.6.4 or higher.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/71a08c09ea5099d7951d8d7badf0ed3bc0a02cf2/data/helpers.d/mysql#L198)
|
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/509ba1e8a28e0be598aa0617eda06669b7b0f1d8/data/helpers.d/mysql#L198)
|
||||||
[/details]
|
[/details]
|
||||||
----------------
|
----------------
|
||||||
|
|
||||||
|
@ -1037,7 +1037,7 @@ Requires YunoHost version 2.6.4 or higher.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/71a08c09ea5099d7951d8d7badf0ed3bc0a02cf2/data/helpers.d/mysql#L224)
|
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/509ba1e8a28e0be598aa0617eda06669b7b0f1d8/data/helpers.d/mysql#L224)
|
||||||
[/details]
|
[/details]
|
||||||
----------------
|
----------------
|
||||||
|
|
||||||
|
@ -1061,7 +1061,7 @@ Requires YunoHost version 2.6.4 or higher.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/71a08c09ea5099d7951d8d7badf0ed3bc0a02cf2/data/helpers.d/network#L12)
|
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/509ba1e8a28e0be598aa0617eda06669b7b0f1d8/data/helpers.d/network#L12)
|
||||||
[/details]
|
[/details]
|
||||||
----------------
|
----------------
|
||||||
|
|
||||||
|
@ -1082,7 +1082,7 @@ Requires YunoHost version 3.8.0 or higher.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/71a08c09ea5099d7951d8d7badf0ed3bc0a02cf2/data/helpers.d/network#L36)
|
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/509ba1e8a28e0be598aa0617eda06669b7b0f1d8/data/helpers.d/network#L36)
|
||||||
[/details]
|
[/details]
|
||||||
----------------
|
----------------
|
||||||
|
|
||||||
|
@ -1103,7 +1103,7 @@ Requires YunoHost version 2.2.4 or higher.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/71a08c09ea5099d7951d8d7badf0ed3bc0a02cf2/data/helpers.d/network#L99)
|
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/509ba1e8a28e0be598aa0617eda06669b7b0f1d8/data/helpers.d/network#L99)
|
||||||
[/details]
|
[/details]
|
||||||
----------------
|
----------------
|
||||||
|
|
||||||
|
@ -1124,7 +1124,7 @@ Requires YunoHost version 2.2.4 or higher.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/71a08c09ea5099d7951d8d7badf0ed3bc0a02cf2/data/helpers.d/network#L119)
|
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/509ba1e8a28e0be598aa0617eda06669b7b0f1d8/data/helpers.d/network#L119)
|
||||||
[/details]
|
[/details]
|
||||||
----------------
|
----------------
|
||||||
|
|
||||||
|
@ -1152,7 +1152,7 @@ Requires YunoHost version 4.1.0 or higher.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/71a08c09ea5099d7951d8d7badf0ed3bc0a02cf2/data/helpers.d/nginx#L19)
|
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/509ba1e8a28e0be598aa0617eda06669b7b0f1d8/data/helpers.d/nginx#L19)
|
||||||
[/details]
|
[/details]
|
||||||
----------------
|
----------------
|
||||||
|
|
||||||
|
@ -1166,7 +1166,7 @@ Requires YunoHost version 2.7.2 or higher.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/71a08c09ea5099d7951d8d7badf0ed3bc0a02cf2/data/helpers.d/nginx#L39)
|
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/509ba1e8a28e0be598aa0617eda06669b7b0f1d8/data/helpers.d/nginx#L39)
|
||||||
[/details]
|
[/details]
|
||||||
----------------
|
----------------
|
||||||
|
|
||||||
|
@ -1220,7 +1220,7 @@ Requires YunoHost version 2.7.12 or higher.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/71a08c09ea5099d7951d8d7badf0ed3bc0a02cf2/data/helpers.d/nodejs#L73)
|
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/509ba1e8a28e0be598aa0617eda06669b7b0f1d8/data/helpers.d/nodejs#L73)
|
||||||
[/details]
|
[/details]
|
||||||
----------------
|
----------------
|
||||||
|
|
||||||
|
@ -1244,7 +1244,7 @@ Requires YunoHost version 2.7.12 or higher.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/71a08c09ea5099d7951d8d7badf0ed3bc0a02cf2/data/helpers.d/nodejs#L113)
|
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/509ba1e8a28e0be598aa0617eda06669b7b0f1d8/data/helpers.d/nodejs#L113)
|
||||||
[/details]
|
[/details]
|
||||||
----------------
|
----------------
|
||||||
|
|
||||||
|
@ -1262,7 +1262,7 @@ Requires YunoHost version 2.7.12 or higher.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/71a08c09ea5099d7951d8d7badf0ed3bc0a02cf2/data/helpers.d/nodejs#L190)
|
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/509ba1e8a28e0be598aa0617eda06669b7b0f1d8/data/helpers.d/nodejs#L190)
|
||||||
[/details]
|
[/details]
|
||||||
----------------
|
----------------
|
||||||
|
|
||||||
|
@ -1335,7 +1335,7 @@ Requires YunoHost version 3.7.0 or higher.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/71a08c09ea5099d7951d8d7badf0ed3bc0a02cf2/data/helpers.d/permission#L66)
|
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/509ba1e8a28e0be598aa0617eda06669b7b0f1d8/data/helpers.d/permission#L66)
|
||||||
[/details]
|
[/details]
|
||||||
----------------
|
----------------
|
||||||
|
|
||||||
|
@ -1354,7 +1354,7 @@ Requires YunoHost version 3.7.0 or higher.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/71a08c09ea5099d7951d8d7badf0ed3bc0a02cf2/data/helpers.d/permission#L152)
|
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/509ba1e8a28e0be598aa0617eda06669b7b0f1d8/data/helpers.d/permission#L152)
|
||||||
[/details]
|
[/details]
|
||||||
----------------
|
----------------
|
||||||
|
|
||||||
|
@ -1372,7 +1372,7 @@ Requires YunoHost version 3.7.0 or higher.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/71a08c09ea5099d7951d8d7badf0ed3bc0a02cf2/data/helpers.d/permission#L169)
|
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/509ba1e8a28e0be598aa0617eda06669b7b0f1d8/data/helpers.d/permission#L169)
|
||||||
[/details]
|
[/details]
|
||||||
----------------
|
----------------
|
||||||
|
|
||||||
|
@ -1395,7 +1395,7 @@ Requires YunoHost version 3.7.0 or higher.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/71a08c09ea5099d7951d8d7badf0ed3bc0a02cf2/data/helpers.d/permission#L192)
|
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/509ba1e8a28e0be598aa0617eda06669b7b0f1d8/data/helpers.d/permission#L192)
|
||||||
[/details]
|
[/details]
|
||||||
----------------
|
----------------
|
||||||
|
|
||||||
|
@ -1418,7 +1418,7 @@ Requires YunoHost version 3.7.0 or higher.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/71a08c09ea5099d7951d8d7badf0ed3bc0a02cf2/data/helpers.d/permission#L260)
|
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/509ba1e8a28e0be598aa0617eda06669b7b0f1d8/data/helpers.d/permission#L260)
|
||||||
[/details]
|
[/details]
|
||||||
----------------
|
----------------
|
||||||
|
|
||||||
|
@ -1439,7 +1439,7 @@ Requires YunoHost version 3.7.1 or higher.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/71a08c09ea5099d7951d8d7badf0ed3bc0a02cf2/data/helpers.d/permission#L329)
|
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/509ba1e8a28e0be598aa0617eda06669b7b0f1d8/data/helpers.d/permission#L329)
|
||||||
[/details]
|
[/details]
|
||||||
----------------
|
----------------
|
||||||
|
|
||||||
|
@ -1454,7 +1454,7 @@ Requires YunoHost version 4.1.2 or higher.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/71a08c09ea5099d7951d8d7badf0ed3bc0a02cf2/data/helpers.d/permission#L359)
|
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/509ba1e8a28e0be598aa0617eda06669b7b0f1d8/data/helpers.d/permission#L359)
|
||||||
[/details]
|
[/details]
|
||||||
----------------
|
----------------
|
||||||
|
|
||||||
|
@ -1465,7 +1465,7 @@ Requires YunoHost version 4.1.2 or higher.
|
||||||
|
|
||||||
**Example**: `if ynh_legacy_permissions_exists then ynh_legacy_permissions_delete_all # You can recreate the required permissions here with ynh_permission_create fi Requires YunoHost version 4.1.2 or higher.`
|
**Example**: `if ynh_legacy_permissions_exists then ynh_legacy_permissions_delete_all # You can recreate the required permissions here with ynh_permission_create fi Requires YunoHost version 4.1.2 or higher.`
|
||||||
|
|
||||||
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/71a08c09ea5099d7951d8d7badf0ed3bc0a02cf2/data/helpers.d/permission#L379)
|
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/509ba1e8a28e0be598aa0617eda06669b7b0f1d8/data/helpers.d/permission#L379)
|
||||||
[/details]
|
[/details]
|
||||||
----------------
|
----------------
|
||||||
|
|
||||||
|
@ -1523,7 +1523,7 @@ Requires YunoHost version 4.1.0 or higher.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/71a08c09ea5099d7951d8d7badf0ed3bc0a02cf2/data/helpers.d/php#L59)
|
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/509ba1e8a28e0be598aa0617eda06669b7b0f1d8/data/helpers.d/php#L59)
|
||||||
[/details]
|
[/details]
|
||||||
----------------
|
----------------
|
||||||
|
|
||||||
|
@ -1537,7 +1537,7 @@ Requires YunoHost version 2.7.2 or higher.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/71a08c09ea5099d7951d8d7badf0ed3bc0a02cf2/data/helpers.d/php#L250)
|
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/509ba1e8a28e0be598aa0617eda06669b7b0f1d8/data/helpers.d/php#L250)
|
||||||
[/details]
|
[/details]
|
||||||
----------------
|
----------------
|
||||||
|
|
||||||
|
@ -1556,7 +1556,7 @@ Requires YunoHost version 4.2 or higher.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/71a08c09ea5099d7951d8d7badf0ed3bc0a02cf2/data/helpers.d/php#L481)
|
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/509ba1e8a28e0be598aa0617eda06669b7b0f1d8/data/helpers.d/php#L481)
|
||||||
[/details]
|
[/details]
|
||||||
----------------
|
----------------
|
||||||
|
|
||||||
|
@ -1576,7 +1576,7 @@ Requires YunoHost version 4.2 or higher.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/71a08c09ea5099d7951d8d7badf0ed3bc0a02cf2/data/helpers.d/php#L507)
|
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/509ba1e8a28e0be598aa0617eda06669b7b0f1d8/data/helpers.d/php#L507)
|
||||||
[/details]
|
[/details]
|
||||||
----------------
|
----------------
|
||||||
|
|
||||||
|
@ -1609,7 +1609,7 @@ Requires YunoHost version 3.5.0 or higher.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/71a08c09ea5099d7951d8d7badf0ed3bc0a02cf2/data/helpers.d/postgresql#L18)
|
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/509ba1e8a28e0be598aa0617eda06669b7b0f1d8/data/helpers.d/postgresql#L18)
|
||||||
[/details]
|
[/details]
|
||||||
----------------
|
----------------
|
||||||
|
|
||||||
|
@ -1627,7 +1627,7 @@ Requires YunoHost version 3.5.0 or higher.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/71a08c09ea5099d7951d8d7badf0ed3bc0a02cf2/data/helpers.d/postgresql#L39)
|
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/509ba1e8a28e0be598aa0617eda06669b7b0f1d8/data/helpers.d/postgresql#L39)
|
||||||
[/details]
|
[/details]
|
||||||
----------------
|
----------------
|
||||||
|
|
||||||
|
@ -1645,7 +1645,7 @@ Requires YunoHost version 3.5.0 or higher.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/71a08c09ea5099d7951d8d7badf0ed3bc0a02cf2/data/helpers.d/postgresql#L64)
|
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/509ba1e8a28e0be598aa0617eda06669b7b0f1d8/data/helpers.d/postgresql#L64)
|
||||||
[/details]
|
[/details]
|
||||||
----------------
|
----------------
|
||||||
|
|
||||||
|
@ -1666,7 +1666,7 @@ Requires YunoHost version 3.5.0 or higher.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/71a08c09ea5099d7951d8d7badf0ed3bc0a02cf2/data/helpers.d/postgresql#L135)
|
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/509ba1e8a28e0be598aa0617eda06669b7b0f1d8/data/helpers.d/postgresql#L135)
|
||||||
[/details]
|
[/details]
|
||||||
----------------
|
----------------
|
||||||
|
|
||||||
|
@ -1684,7 +1684,7 @@ Requires YunoHost version 3.5.0 or higher.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/71a08c09ea5099d7951d8d7badf0ed3bc0a02cf2/data/helpers.d/postgresql#L168)
|
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/509ba1e8a28e0be598aa0617eda06669b7b0f1d8/data/helpers.d/postgresql#L168)
|
||||||
[/details]
|
[/details]
|
||||||
----------------
|
----------------
|
||||||
|
|
||||||
|
@ -1702,7 +1702,7 @@ Requires YunoHost version 3.5.0 or higher.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/71a08c09ea5099d7951d8d7badf0ed3bc0a02cf2/data/helpers.d/postgresql#L190)
|
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/509ba1e8a28e0be598aa0617eda06669b7b0f1d8/data/helpers.d/postgresql#L190)
|
||||||
[/details]
|
[/details]
|
||||||
----------------
|
----------------
|
||||||
|
|
||||||
|
@ -1724,7 +1724,7 @@ Requires YunoHost version 2.7.13 or higher.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/71a08c09ea5099d7951d8d7badf0ed3bc0a02cf2/data/helpers.d/postgresql#L228)
|
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/509ba1e8a28e0be598aa0617eda06669b7b0f1d8/data/helpers.d/postgresql#L228)
|
||||||
[/details]
|
[/details]
|
||||||
----------------
|
----------------
|
||||||
|
|
||||||
|
@ -1742,7 +1742,7 @@ Requires YunoHost version 2.7.13 or higher.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/71a08c09ea5099d7951d8d7badf0ed3bc0a02cf2/data/helpers.d/postgresql#L259)
|
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/509ba1e8a28e0be598aa0617eda06669b7b0f1d8/data/helpers.d/postgresql#L259)
|
||||||
[/details]
|
[/details]
|
||||||
----------------
|
----------------
|
||||||
|
|
||||||
|
@ -1759,7 +1759,7 @@ Requires YunoHost version 2.7.13 or higher.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/71a08c09ea5099d7951d8d7badf0ed3bc0a02cf2/data/helpers.d/postgresql#L290)
|
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/509ba1e8a28e0be598aa0617eda06669b7b0f1d8/data/helpers.d/postgresql#L290)
|
||||||
[/details]
|
[/details]
|
||||||
----------------
|
----------------
|
||||||
|
|
||||||
|
@ -1780,7 +1780,7 @@ Requires YunoHost version 2.2.4 or higher.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/71a08c09ea5099d7951d8d7badf0ed3bc0a02cf2/data/helpers.d/setting#L10)
|
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/509ba1e8a28e0be598aa0617eda06669b7b0f1d8/data/helpers.d/setting#L10)
|
||||||
[/details]
|
[/details]
|
||||||
----------------
|
----------------
|
||||||
|
|
||||||
|
@ -1799,7 +1799,7 @@ Requires YunoHost version 2.2.4 or higher.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/71a08c09ea5099d7951d8d7badf0ed3bc0a02cf2/data/helpers.d/setting#L36)
|
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/509ba1e8a28e0be598aa0617eda06669b7b0f1d8/data/helpers.d/setting#L36)
|
||||||
[/details]
|
[/details]
|
||||||
----------------
|
----------------
|
||||||
|
|
||||||
|
@ -1817,7 +1817,7 @@ Requires YunoHost version 2.2.4 or higher.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/71a08c09ea5099d7951d8d7badf0ed3bc0a02cf2/data/helpers.d/setting#L62)
|
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/509ba1e8a28e0be598aa0617eda06669b7b0f1d8/data/helpers.d/setting#L62)
|
||||||
[/details]
|
[/details]
|
||||||
----------------
|
----------------
|
||||||
|
|
||||||
|
@ -1837,7 +1837,7 @@ Requires YunoHost version 2.6.4 or higher.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/71a08c09ea5099d7951d8d7badf0ed3bc0a02cf2/data/helpers.d/setting#L123)
|
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/509ba1e8a28e0be598aa0617eda06669b7b0f1d8/data/helpers.d/setting#L123)
|
||||||
[/details]
|
[/details]
|
||||||
----------------
|
----------------
|
||||||
|
|
||||||
|
@ -1858,7 +1858,7 @@ Requires YunoHost version 2.6.4 or higher.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/71a08c09ea5099d7951d8d7badf0ed3bc0a02cf2/data/helpers.d/setting#L145)
|
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/509ba1e8a28e0be598aa0617eda06669b7b0f1d8/data/helpers.d/setting#L145)
|
||||||
[/details]
|
[/details]
|
||||||
----------------
|
----------------
|
||||||
|
|
||||||
|
@ -1882,7 +1882,7 @@ Requires YunoHost version 2.2.4 or higher.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/71a08c09ea5099d7951d8d7badf0ed3bc0a02cf2/data/helpers.d/string#L12)
|
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/509ba1e8a28e0be598aa0617eda06669b7b0f1d8/data/helpers.d/string#L12)
|
||||||
[/details]
|
[/details]
|
||||||
----------------
|
----------------
|
||||||
|
|
||||||
|
@ -1904,7 +1904,7 @@ Requires YunoHost version 2.6.4 or higher.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/71a08c09ea5099d7951d8d7badf0ed3bc0a02cf2/data/helpers.d/string#L37)
|
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/509ba1e8a28e0be598aa0617eda06669b7b0f1d8/data/helpers.d/string#L37)
|
||||||
[/details]
|
[/details]
|
||||||
----------------
|
----------------
|
||||||
|
|
||||||
|
@ -1926,7 +1926,7 @@ Requires YunoHost version 2.7.7 or higher.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/71a08c09ea5099d7951d8d7badf0ed3bc0a02cf2/data/helpers.d/string#L68)
|
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/509ba1e8a28e0be598aa0617eda06669b7b0f1d8/data/helpers.d/string#L68)
|
||||||
[/details]
|
[/details]
|
||||||
----------------
|
----------------
|
||||||
|
|
||||||
|
@ -1949,7 +1949,7 @@ Requires YunoHost version 2.2.4 or higher.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/71a08c09ea5099d7951d8d7badf0ed3bc0a02cf2/data/helpers.d/string#L100)
|
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/509ba1e8a28e0be598aa0617eda06669b7b0f1d8/data/helpers.d/string#L100)
|
||||||
[/details]
|
[/details]
|
||||||
----------------
|
----------------
|
||||||
|
|
||||||
|
@ -1975,7 +1975,7 @@ Requires YunoHost version 4.1.0 or higher.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/71a08c09ea5099d7951d8d7badf0ed3bc0a02cf2/data/helpers.d/systemd#L15)
|
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/509ba1e8a28e0be598aa0617eda06669b7b0f1d8/data/helpers.d/systemd#L15)
|
||||||
[/details]
|
[/details]
|
||||||
----------------
|
----------------
|
||||||
|
|
||||||
|
@ -1992,7 +1992,7 @@ Requires YunoHost version 2.7.2 or higher.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/71a08c09ea5099d7951d8d7badf0ed3bc0a02cf2/data/helpers.d/systemd#L42)
|
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/509ba1e8a28e0be598aa0617eda06669b7b0f1d8/data/helpers.d/systemd#L42)
|
||||||
[/details]
|
[/details]
|
||||||
----------------
|
----------------
|
||||||
|
|
||||||
|
@ -2014,7 +2014,7 @@ Requires YunoHost version 3.5.0 or higher.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/71a08c09ea5099d7951d8d7badf0ed3bc0a02cf2/data/helpers.d/systemd#L71)
|
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/509ba1e8a28e0be598aa0617eda06669b7b0f1d8/data/helpers.d/systemd#L71)
|
||||||
[/details]
|
[/details]
|
||||||
----------------
|
----------------
|
||||||
|
|
||||||
|
@ -2038,7 +2038,7 @@ Requires YunoHost version 2.2.4 or higher.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/71a08c09ea5099d7951d8d7badf0ed3bc0a02cf2/data/helpers.d/user#L12)
|
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/509ba1e8a28e0be598aa0617eda06669b7b0f1d8/data/helpers.d/user#L12)
|
||||||
[/details]
|
[/details]
|
||||||
----------------
|
----------------
|
||||||
|
|
||||||
|
@ -2060,7 +2060,7 @@ Requires YunoHost version 2.2.4 or higher.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/71a08c09ea5099d7951d8d7badf0ed3bc0a02cf2/data/helpers.d/user#L33)
|
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/509ba1e8a28e0be598aa0617eda06669b7b0f1d8/data/helpers.d/user#L33)
|
||||||
[/details]
|
[/details]
|
||||||
----------------
|
----------------
|
||||||
|
|
||||||
|
@ -2078,7 +2078,7 @@ Requires YunoHost version 2.4.0 or higher.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/71a08c09ea5099d7951d8d7badf0ed3bc0a02cf2/data/helpers.d/user#L53)
|
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/509ba1e8a28e0be598aa0617eda06669b7b0f1d8/data/helpers.d/user#L53)
|
||||||
[/details]
|
[/details]
|
||||||
----------------
|
----------------
|
||||||
|
|
||||||
|
@ -2097,7 +2097,7 @@ Requires YunoHost version 2.2.4 or higher.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/71a08c09ea5099d7951d8d7badf0ed3bc0a02cf2/data/helpers.d/user#L64)
|
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/509ba1e8a28e0be598aa0617eda06669b7b0f1d8/data/helpers.d/user#L64)
|
||||||
[/details]
|
[/details]
|
||||||
----------------
|
----------------
|
||||||
|
|
||||||
|
@ -2116,7 +2116,7 @@ Requires YunoHost version 3.5.0.2 or higher.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/71a08c09ea5099d7951d8d7badf0ed3bc0a02cf2/data/helpers.d/user#L82)
|
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/509ba1e8a28e0be598aa0617eda06669b7b0f1d8/data/helpers.d/user#L82)
|
||||||
[/details]
|
[/details]
|
||||||
----------------
|
----------------
|
||||||
|
|
||||||
|
@ -2145,7 +2145,7 @@ Requires YunoHost version 2.6.4 or higher.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/71a08c09ea5099d7951d8d7badf0ed3bc0a02cf2/data/helpers.d/user#L111)
|
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/509ba1e8a28e0be598aa0617eda06669b7b0f1d8/data/helpers.d/user#L111)
|
||||||
[/details]
|
[/details]
|
||||||
----------------
|
----------------
|
||||||
|
|
||||||
|
@ -2162,7 +2162,7 @@ Requires YunoHost version 2.6.4 or higher.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/71a08c09ea5099d7951d8d7badf0ed3bc0a02cf2/data/helpers.d/user#L153)
|
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/509ba1e8a28e0be598aa0617eda06669b7b0f1d8/data/helpers.d/user#L153)
|
||||||
[/details]
|
[/details]
|
||||||
----------------
|
----------------
|
||||||
|
|
||||||
|
@ -2176,7 +2176,7 @@ Requires YunoHost version 4.1.7 or higher.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/71a08c09ea5099d7951d8d7badf0ed3bc0a02cf2/data/helpers.d/user#L179)
|
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/509ba1e8a28e0be598aa0617eda06669b7b0f1d8/data/helpers.d/user#L179)
|
||||||
[/details]
|
[/details]
|
||||||
----------------
|
----------------
|
||||||
|
|
||||||
|
@ -2197,7 +2197,7 @@ Requires YunoHost version 2.6.4 or higher.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/71a08c09ea5099d7951d8d7badf0ed3bc0a02cf2/data/helpers.d/utils#L58)
|
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/509ba1e8a28e0be598aa0617eda06669b7b0f1d8/data/helpers.d/utils#L58)
|
||||||
[/details]
|
[/details]
|
||||||
----------------
|
----------------
|
||||||
|
|
||||||
|
@ -2246,7 +2246,7 @@ Requires YunoHost version 2.6.4 or higher.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/71a08c09ea5099d7951d8d7badf0ed3bc0a02cf2/data/helpers.d/utils#L102)
|
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/509ba1e8a28e0be598aa0617eda06669b7b0f1d8/data/helpers.d/utils#L102)
|
||||||
[/details]
|
[/details]
|
||||||
----------------
|
----------------
|
||||||
|
|
||||||
|
@ -2272,7 +2272,7 @@ Requires YunoHost version 2.6.4 or higher.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/71a08c09ea5099d7951d8d7badf0ed3bc0a02cf2/data/helpers.d/utils#L263)
|
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/509ba1e8a28e0be598aa0617eda06669b7b0f1d8/data/helpers.d/utils#L263)
|
||||||
[/details]
|
[/details]
|
||||||
----------------
|
----------------
|
||||||
|
|
||||||
|
@ -2334,7 +2334,7 @@ Requires YunoHost version 4.1.0 or higher.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/71a08c09ea5099d7951d8d7badf0ed3bc0a02cf2/data/helpers.d/utils#L348)
|
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/509ba1e8a28e0be598aa0617eda06669b7b0f1d8/data/helpers.d/utils#L348)
|
||||||
[/details]
|
[/details]
|
||||||
----------------
|
----------------
|
||||||
|
|
||||||
|
@ -2378,7 +2378,7 @@ Requires YunoHost version 4.3 or higher.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/71a08c09ea5099d7951d8d7badf0ed3bc0a02cf2/data/helpers.d/utils#L499)
|
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/509ba1e8a28e0be598aa0617eda06669b7b0f1d8/data/helpers.d/utils#L499)
|
||||||
[/details]
|
[/details]
|
||||||
----------------
|
----------------
|
||||||
|
|
||||||
|
@ -2397,7 +2397,7 @@ Requires YunoHost version 4.3 or higher.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/71a08c09ea5099d7951d8d7badf0ed3bc0a02cf2/data/helpers.d/utils#L576)
|
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/509ba1e8a28e0be598aa0617eda06669b7b0f1d8/data/helpers.d/utils#L576)
|
||||||
[/details]
|
[/details]
|
||||||
----------------
|
----------------
|
||||||
|
|
||||||
|
@ -2413,7 +2413,7 @@ Requires YunoHost version 2.7.12 or higher.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/71a08c09ea5099d7951d8d7badf0ed3bc0a02cf2/data/helpers.d/utils#L688)
|
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/509ba1e8a28e0be598aa0617eda06669b7b0f1d8/data/helpers.d/utils#L688)
|
||||||
[/details]
|
[/details]
|
||||||
----------------
|
----------------
|
||||||
|
|
||||||
|
@ -2430,7 +2430,7 @@ Requires YunoHost version 2.6.4 or higher.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/71a08c09ea5099d7951d8d7badf0ed3bc0a02cf2/data/helpers.d/utils#L740)
|
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/509ba1e8a28e0be598aa0617eda06669b7b0f1d8/data/helpers.d/utils#L740)
|
||||||
[/details]
|
[/details]
|
||||||
----------------
|
----------------
|
||||||
|
|
||||||
|
@ -2450,7 +2450,7 @@ Requires YunoHost version 3.5.0 or higher.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/71a08c09ea5099d7951d8d7badf0ed3bc0a02cf2/data/helpers.d/utils#L802)
|
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/509ba1e8a28e0be598aa0617eda06669b7b0f1d8/data/helpers.d/utils#L802)
|
||||||
[/details]
|
[/details]
|
||||||
----------------
|
----------------
|
||||||
|
|
||||||
|
@ -2475,7 +2475,7 @@ Requires YunoHost version 3.5.0 or higher.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/71a08c09ea5099d7951d8d7badf0ed3bc0a02cf2/data/helpers.d/utils#L832)
|
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/509ba1e8a28e0be598aa0617eda06669b7b0f1d8/data/helpers.d/utils#L832)
|
||||||
[/details]
|
[/details]
|
||||||
----------------
|
----------------
|
||||||
|
|
||||||
|
@ -2498,7 +2498,7 @@ Requires YunoHost version 3.5.0 or higher.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/71a08c09ea5099d7951d8d7badf0ed3bc0a02cf2/data/helpers.d/utils#L861)
|
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/509ba1e8a28e0be598aa0617eda06669b7b0f1d8/data/helpers.d/utils#L861)
|
||||||
[/details]
|
[/details]
|
||||||
----------------
|
----------------
|
||||||
|
|
||||||
|
@ -2521,7 +2521,7 @@ Requires YunoHost version 3.5.0 or higher.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/71a08c09ea5099d7951d8d7badf0ed3bc0a02cf2/data/helpers.d/utils#L886)
|
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/509ba1e8a28e0be598aa0617eda06669b7b0f1d8/data/helpers.d/utils#L886)
|
||||||
[/details]
|
[/details]
|
||||||
----------------
|
----------------
|
||||||
|
|
||||||
|
@ -2553,7 +2553,7 @@ Requires YunoHost version 3.8.0 or higher.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/71a08c09ea5099d7951d8d7badf0ed3bc0a02cf2/data/helpers.d/utils#L916)
|
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/509ba1e8a28e0be598aa0617eda06669b7b0f1d8/data/helpers.d/utils#L916)
|
||||||
[/details]
|
[/details]
|
||||||
----------------
|
----------------
|
||||||
|
|
||||||
|
|
22
pages/04.contribute/05.dev/02.maindomain/maindomain.md
Normal file
22
pages/04.contribute/05.dev/02.maindomain/maindomain.md
Normal file
|
@ -0,0 +1,22 @@
|
||||||
|
---
|
||||||
|
title: How is used the main domain
|
||||||
|
template: docs
|
||||||
|
taxonomy:
|
||||||
|
category: docs
|
||||||
|
routes:
|
||||||
|
default: '/dev/maindomain'
|
||||||
|
---
|
||||||
|
|
||||||
|
Here is a list of situations in which we use the main domain concept:
|
||||||
|
- to expose the web portal: currently the web portal is only reachable through the main domain address (could be changed for multi tenant support in future)
|
||||||
|
- to define the hostname of the machine: we believe we do this to avoid some sudo errors (may be it's not relvant anymore or could be made in /etc/hosts)
|
||||||
|
- to TLS encrypt SMTP and dovecot: so user should define the main domain in their email client to avoid TLS warning
|
||||||
|
- To be able to do mail forwarding using the main domain as Sender Rewriting Scheme Domain see: https://en.wikipedia.org/wiki/Sender_Rewriting_Scheme
|
||||||
|
- to define default email as (root@ abuse@) but we probably should do it on all parent domain instead
|
||||||
|
- to define `myhostname` in postfix config, used as EHLO and reverseDNS (refering to https://mxtoolbox.com/emailhealth test it should be a FQDN, so a subdomain)
|
||||||
|
- to generate the self-signed Local Authority: having just one allow to upload it in a browser and get an x509 authenticated https connexion.
|
||||||
|
- to define default xmpp DNS field: dns field are only set on the main domain by default
|
||||||
|
|
||||||
|
Finally we can imagine some apps use the main domain too, see
|
||||||
|
https://github.com/search?q=org%3AYunoHost-Apps+main_domain&type=code
|
||||||
|
https://github.com/search?q=org%3AYunoHost-Apps+current_host&type=code
|
Loading…
Reference in a new issue