mirror of
https://github.com/YunoHost/doc.git
synced 2024-09-03 20:06:26 +02:00
Add moulinette_fr.md
This commit is contained in:
parent
5a925764d0
commit
d668cd0479
1 changed files with 48 additions and 0 deletions
48
moulinette_fr.md
Normal file
48
moulinette_fr.md
Normal file
|
@ -0,0 +1,48 @@
|
||||||
|
# Moulinette
|
||||||
|
|
||||||
|
La moulinette est l'interface en ligne de commande (CLI) de YunoHost. Elle permet de gérer entièrement YunoHost: utilisateurs, domaines, apps, pare-feu, sauvegardes et monitoring.
|
||||||
|
|
||||||
|
### Utilisation
|
||||||
|
|
||||||
|
La moulinette fonctionne avec 2 niveau de sous-commandes, par exemple:
|
||||||
|
```bash
|
||||||
|
yunohost user create
|
||||||
|
```
|
||||||
|
|
||||||
|
Vous pouvez y adjoindre des arguments pour certaines commandes:
|
||||||
|
```bash
|
||||||
|
yunohost app install roundcube --label Webmail
|
||||||
|
```
|
||||||
|
|
||||||
|
Pour obtenir de l'aide à tout moment sur l'utilisation d'une commande ou d'une sous-commande, vous pouvez ajouter ```-h``` ou ```--help``` à la commande. Essayez par exemple:
|
||||||
|
```bash
|
||||||
|
yunohost --help
|
||||||
|
yunohost user --help
|
||||||
|
yunohost user create --help
|
||||||
|
```
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
Ça y est, vous savez utiliser la moulinette ! N'hésitez pas à parcourir ses fonctions.
|
||||||
|
```bash
|
||||||
|
root@yunohost:~# yunohost --help
|
||||||
|
usage: yunohost [-h] [-v]
|
||||||
|
{domain,monitor,firewall,backup,app,hook,dyndns,user,tools}
|
||||||
|
...
|
||||||
|
|
||||||
|
positional arguments:
|
||||||
|
{domain,monitor,firewall,backup,app,hook,dyndns,user,tools}
|
||||||
|
domain Manage domains
|
||||||
|
monitor Monitoring functions
|
||||||
|
firewall Manage firewall rules
|
||||||
|
backup Manage backups
|
||||||
|
app Manage apps
|
||||||
|
hook Manage hooks
|
||||||
|
dyndns Subscribe and Update DynDNS Hosts
|
||||||
|
user Manage users
|
||||||
|
tools Specific tools
|
||||||
|
|
||||||
|
optional arguments:
|
||||||
|
-h, --help show this help message and exit
|
||||||
|
-v, --version Display YunoHost version
|
||||||
|
```
|
Loading…
Reference in a new issue