Update moulinette.md

This commit is contained in:
Kload 2013-12-28 12:34:52 +01:00
parent 8b12bdc2ba
commit 40d80aaa53

View file

@ -5,7 +5,7 @@
##yunohost ##yunohost
la command de base est yunohost la command de base est yunohost
<pre> ```bash
usage: yunohost [-h] [-v] usage: yunohost [-h] [-v]
positional arguments: positional arguments:
@ -24,19 +24,19 @@ positional arguments:
optional arguments: optional arguments:
-h, --help show this help message and exit -h, --help show this help message and exit
-v, --version Display moulinette version -v, --version Display moulinette version
</pre> ```
### domain ### domain
<pre> ```bash
yunohost domain [-h] {info,add,list,remove} yunohost domain [-h] {info,add,list,remove}
info Get domain informations info Get domain informations
add Create a custom domain add Create a custom domain
list List domains list List domains
remove Delete domains remove Delete domains
</pre> ```
### monitor ### monitor
<pre> ```bash
yunohost monitor [-h] {enable,network,show-stats,update-stats,disk,system,disable} yunohost monitor [-h] {enable,network,show-stats,update-stats,disk,system,disable}
enable Enable server monitoring enable Enable server monitoring
network Monitor network interfaces network Monitor network interfaces
@ -45,10 +45,10 @@ yunohost monitor [-h] {enable,network,show-stats,update-stats,disk,system,disabl
disk Monitor disk space and usage disk Monitor disk space and usage
system Monitor system informations and usage system Monitor system informations and usage
disable Disable server monitoring disable Disable server monitoring
</pre> ```
### service ### service
<pre> ```bash
yunohost service [-h] {status,start,enable,log,stop,disable} yunohost service [-h] {status,start,enable,log,stop,disable}
status Show status information about one or more services status Show status information about one or more services
(all by default) (all by default)
@ -57,10 +57,10 @@ yunohost service [-h] {status,start,enable,log,stop,disable}
log Log every log files of a service log Log every log files of a service
stop Stop one or more services stop Stop one or more services
disable Disable one or more services disable Disable one or more services
</pre> ```
### firewall ### firewall
<pre> ```bash
yunohost firewall [-h]{installupnp,checkupnp,list,stop,disallow,reload,allow,removeupnp} yunohost firewall [-h]{installupnp,checkupnp,list,stop,disallow,reload,allow,removeupnp}
installupnp Add upnp cron installupnp Add upnp cron
checkupnp check if UPNP is install or not (0 yes 1 no) checkupnp check if UPNP is install or not (0 yes 1 no)
@ -70,16 +70,16 @@ yunohost firewall [-h]{installupnp,checkupnp,list,stop,disallow,reload,allow,rem
reload Reload all firewall rules reload Reload all firewall rules
allow Allow connection port/protocol allow Allow connection port/protocol
removeupnp Remove upnp cron removeupnp Remove upnp cron
</pre> ```
### backup ### backup
<pre> ```bash
yunohost backup [-h] {init} ... yunohost backup [-h] {init} ...
init Init Tahoe-LAFS configuration init Init Tahoe-LAFS configuration
</pre> ```
### app ### app
<pre> ```bash
yunohost app [-h] yunohost app [-h]
{map,ssowatconf,install,checkport,listlists,removelist,info,upgrade,service,fetchlist,checkurl,list,remove,removeaccess,setting,initdb,addaccess} {map,ssowatconf,install,checkport,listlists,removelist,info,upgrade,service,fetchlist,checkurl,list,remove,removeaccess,setting,initdb,addaccess}
map List apps by domain map List apps by domain
@ -100,42 +100,42 @@ yunohost app [-h]
initdb Create database and initialize it with optionnal initdb Create database and initialize it with optionnal
attached script attached script
addaccess Grant access right to users (everyone by default) addaccess Grant access right to users (everyone by default)
</pre> ```
### hook ### hook
<pre> ```bash
yunohost hook [-h] {callback,add,check,remove,exec} ... yunohost hook [-h] {callback,add,check,remove,exec} ...
callback Execute all scripts binded to an action callback Execute all scripts binded to an action
add Store hook script to filesystem add Store hook script to filesystem
check Parse the script file and get arguments check Parse the script file and get arguments
remove Remove hook scripts from filesystem remove Remove hook scripts from filesystem
exec Execute hook from a file with arguments exec Execute hook from a file with arguments
</pre> ```
### dyndns ### dyndns
<pre> ```bash
yunohost dyndns [-h] {subscribe,update,installcron,removecron} ... yunohost dyndns [-h] {subscribe,update,installcron,removecron} ...
subscribe Subscribe to a DynDNS service subscribe Subscribe to a DynDNS service
update Update IP on DynDNS platform update Update IP on DynDNS platform
installcron Install IP update cron installcron Install IP update cron
removecron Remove IP update cron removecron Remove IP update cron
</pre> ```
### user ### user
<pre> ```bash
yunohost user [-h] {info,create,list,update,delete} ... yunohost user [-h] {info,create,list,update,delete} ...
info Get user informations info Get user informations
create Create user create Create user
list List users list List users
update Update user informations update Update user informations
delete Delete user delete Delete user
</pre> ```
### tools ### tools
<pre> ```bash
yunohost tools [-h] {postinstall,maindomain,ldapinit,adminpw} ... yunohost tools [-h] {postinstall,maindomain,ldapinit,adminpw} ...
postinstall YunoHost post-install postinstall YunoHost post-install
maindomain Main domain change tool maindomain Main domain change tool
ldapinit YunoHost LDAP initialization ldapinit YunoHost LDAP initialization
adminpw Change admin password adminpw Change admin password
</pre> ```