diff --git a/bin/v_add_cron_job b/bin/v_add_cron_job index 130719915..e7bbec070 100755 --- a/bin/v_add_cron_job +++ b/bin/v_add_cron_job @@ -1,6 +1,6 @@ #!/bin/bash # info: add cron job -# arguments: user min hour day month wday command [job] +# options: user min hour day month wday command [job] # # The function adds a job to cron daemon. When executing commands, any output # is mailed to user's email if parameter REPORTS is set to 'yes'. diff --git a/bin/v_add_db_base b/bin/v_add_db_base index adfd8e747..e84a5421d 100755 --- a/bin/v_add_db_base +++ b/bin/v_add_db_base @@ -1,6 +1,6 @@ #!/bin/bash # info: add database -# arguments: user db db_user db_password type [host] [encoding] +# options: user db db_user db_password type [host] [encoding] # # The function creates the database concatenating username and user_db. # Supported yypes of databases you can get using v_list_sys_config script. diff --git a/bin/v_add_db_host b/bin/v_add_db_host index 033533e32..e5db5b4b6 100755 --- a/bin/v_add_db_host +++ b/bin/v_add_db_host @@ -1,6 +1,6 @@ #!/bin/bash # info: add new database server -# arguments: type host port db_user db_password [max_db] [tpl] +# options: type host port db_user db_password [max_db] [tpl] # # The function add new database server to the server pool. It supports local # and remote database servers, which is useful for clusters. By adding a host diff --git a/bin/v_add_dns_domain b/bin/v_add_dns_domain index 8e65eaa9f..38baf6d03 100755 --- a/bin/v_add_dns_domain +++ b/bin/v_add_dns_domain @@ -1,6 +1,6 @@ #!/bin/bash # info: add dns domain -# arguments: user domain ip [template] [exp] [soa] [ttl] +# options: user domain ip [template] [exp] [soa] [ttl] # # The function adds DNS zone with records defined in the template. If the exp # argument isn't stated, the expiration date value will be set to next year. diff --git a/bin/v_add_dns_domain_record b/bin/v_add_dns_domain_record index 542ad5ff5..bfe34c9e3 100755 --- a/bin/v_add_dns_domain_record +++ b/bin/v_add_dns_domain_record @@ -1,6 +1,6 @@ #!/bin/bash # info: add dns domain record -# arguments: user domain record type value [id] +# options: user domain record type value [id] # # The call is used for adding new DNS record. Complex records of TXT, MX and # SRV types can be used by a filling in the 'value' argument. The function also diff --git a/bin/v_change_cron_job b/bin/v_change_cron_job index d223966c8..7183e469d 100755 --- a/bin/v_change_cron_job +++ b/bin/v_change_cron_job @@ -1,6 +1,6 @@ #!/bin/bash # info: change cron job -# arguments: user job min hour day month wday command +# options: user job min hour day month wday command # # The function is used for changing existing job. It fully replace job # parameters with new one but with same id. diff --git a/bin/v_change_db_password b/bin/v_change_db_password index fb54aab4b..b96d2bbb0 100755 --- a/bin/v_change_db_password +++ b/bin/v_change_db_password @@ -1,6 +1,6 @@ #!/bin/bash # info: change database user password -# arguments: user db_name db_password +# options: user db_name db_password # # The function for changing database user password to a database. It uses the # full name of database as argument. diff --git a/bin/v_change_dns_domain_exp b/bin/v_change_dns_domain_exp index 273b7fe06..69067aa14 100755 --- a/bin/v_change_dns_domain_exp +++ b/bin/v_change_dns_domain_exp @@ -1,6 +1,6 @@ #!/bin/bash # info: change dns domain expiriation date -# arguments: user domain exp +# options: user domain exp # # The function of changing the term of expiration domain's registration. The # serial number will be refreshed automatically during update. diff --git a/bin/v_change_dns_domain_ip b/bin/v_change_dns_domain_ip index 3ceb8eacc..21501e8bf 100755 --- a/bin/v_change_dns_domain_ip +++ b/bin/v_change_dns_domain_ip @@ -1,6 +1,6 @@ #!/bin/bash # info: change dns domain ip address -# arguments: user domain ip +# options: user domain ip # # The function for changing the main ip of DNS zone. diff --git a/bin/v_change_dns_domain_record b/bin/v_change_dns_domain_record index 58a6e6683..f2c11f026 100755 --- a/bin/v_change_dns_domain_record +++ b/bin/v_change_dns_domain_record @@ -1,6 +1,6 @@ #!/bin/bash # info: change dns domain record -# arguments: user domain id record type value +# options: user domain id record type value # # The function for changing DNS record. diff --git a/bin/v_change_dns_domain_soa b/bin/v_change_dns_domain_soa index ec9784825..abebef28c 100755 --- a/bin/v_change_dns_domain_soa +++ b/bin/v_change_dns_domain_soa @@ -1,6 +1,6 @@ #!/bin/bash # info: change dns domain soa record -# arguments: user domain soa +# options: user domain soa # # The function for changing SOA record. This type of records can not be # modified by v_change_dns_domain_record call. diff --git a/bin/v_change_dns_domain_tpl b/bin/v_change_dns_domain_tpl index 2ed4c6f71..8d1d22680 100755 --- a/bin/v_change_dns_domain_tpl +++ b/bin/v_change_dns_domain_tpl @@ -1,6 +1,6 @@ #!/bin/bash # info: change dns domain template -# arguments: user domain +# options: user domain # # The function for changing the template of records. By updating old records # will be removed and new records will be generated in accordance with diff --git a/bin/v_change_dns_domain_ttl b/bin/v_change_dns_domain_ttl index 7af316151..7d7b14e02 100755 --- a/bin/v_change_dns_domain_ttl +++ b/bin/v_change_dns_domain_ttl @@ -1,6 +1,6 @@ #!/bin/bash # info: change dns domain ttl -# arguments: user domain ttl +# options: user domain ttl # # The function for chaning the time to live TTL parameter for all records. diff --git a/bin/v_delete_cron_job b/bin/v_delete_cron_job index 140998b11..f867df9aa 100755 --- a/bin/v_delete_cron_job +++ b/bin/v_delete_cron_job @@ -1,6 +1,6 @@ #!/bin/bash # info: delete cron job -# arguments: user job +# options: user job # # The function deletes cron job. diff --git a/bin/v_delete_db_base b/bin/v_delete_db_base index f22e5406c..67e364590 100755 --- a/bin/v_delete_db_base +++ b/bin/v_delete_db_base @@ -1,6 +1,6 @@ #!/bin/bash # info: delete database -# arguments: user database +# options: user database # # The function for deleting the database. If database user have access to # another database, he will not be deleted. diff --git a/bin/v_delete_db_dbases b/bin/v_delete_db_dbases index 29bafcbdc..5c3fc7ab0 100755 --- a/bin/v_delete_db_dbases +++ b/bin/v_delete_db_dbases @@ -1,6 +1,6 @@ #!/bin/bash # info: delete user databases -# arguments: user +# options: user # # The function deletes all user databases. diff --git a/bin/v_delete_db_host b/bin/v_delete_db_host index dfc8ef20d..5e69ac496 100755 --- a/bin/v_delete_db_host +++ b/bin/v_delete_db_host @@ -1,6 +1,6 @@ #!/bin/bash # info: delete database serve -# arguments: type host +# options: type host # # The function for deleting the database host from vesta configuration. It will # be deleted if there are no databases created on it only. diff --git a/bin/v_delete_dns_domain b/bin/v_delete_dns_domain index 232c93710..090dffc0a 100755 --- a/bin/v_delete_dns_domain +++ b/bin/v_delete_dns_domain @@ -1,6 +1,6 @@ #!/bin/bash # info: delite dns domain -# arguments: user domain +# options: user domain # # The function for deleting DNS domain. By deleting it all records will also be # deleted. diff --git a/bin/v_delete_dns_domain_record b/bin/v_delete_dns_domain_record index aa37c2c9b..35325f4d4 100755 --- a/bin/v_delete_dns_domain_record +++ b/bin/v_delete_dns_domain_record @@ -1,6 +1,6 @@ #!/bin/bash # info: delete dns record -# arguments: user domain id +# options: user domain id # # The function for deleting a certain record of DNS zone. diff --git a/bin/v_delete_dns_domains b/bin/v_delete_dns_domains index 2351c8ba8..1583b3c2c 100755 --- a/bin/v_delete_dns_domains +++ b/bin/v_delete_dns_domains @@ -1,6 +1,6 @@ #!/bin/bash # info: delete dns domains -# arguments: user +# options: user # # The function for deleting all users DNS domains. diff --git a/bin/v_get_dns_domain_value b/bin/v_get_dns_domain_value index b776b13a1..ab0716dec 100755 --- a/bin/v_get_dns_domain_value +++ b/bin/v_get_dns_domain_value @@ -1,6 +1,6 @@ #!/bin/bash # info: get dns domain value -# arguments: user domain key +# options: user domain key # # The function for getting a certain DNS domain parameter. diff --git a/bin/v_list_cron_jobs b/bin/v_list_cron_jobs index 1deac5c9f..b9ee69985 100755 --- a/bin/v_list_cron_jobs +++ b/bin/v_list_cron_jobs @@ -1,6 +1,6 @@ #!/bin/bash # info: list user cron jobs -# arguments: user [format] +# options: user [format] # # The function for obtaining the list of all users cron jobs. diff --git a/bin/v_list_db_base b/bin/v_list_db_base index 4a95a5946..93ffe0f1d 100755 --- a/bin/v_list_db_base +++ b/bin/v_list_db_base @@ -1,6 +1,6 @@ #!/bin/bash # info: list database -# arguments: user database [format] +# options: user database [format] # # The function for obtaining of all database's parameters. diff --git a/bin/v_list_db_bases b/bin/v_list_db_bases index 628bcce9e..33200c422 100755 --- a/bin/v_list_db_bases +++ b/bin/v_list_db_bases @@ -1,6 +1,6 @@ #!/bin/bash # info: listing data bases -# arguments: user [format] +# options: user [format] # # The function for obtaining the list of all user's databases. diff --git a/bin/v_list_db_host b/bin/v_list_db_host index fda87178f..7b4ab032c 100755 --- a/bin/v_list_db_host +++ b/bin/v_list_db_host @@ -1,6 +1,6 @@ #!/bin/bash # info: list database host -# arguments: type host [format] +# options: type host [format] # # The function for obtaining host's database parameters. diff --git a/bin/v_list_db_hosts b/bin/v_list_db_hosts index 11964ad20..f7c271a84 100755 --- a/bin/v_list_db_hosts +++ b/bin/v_list_db_hosts @@ -1,6 +1,6 @@ #!/bin/bash # info: list data base servers -# arguments: type [format] +# options: type [format] # # The function for obtaining the list of all hosts of the same databases' type. diff --git a/bin/v_list_dns_domain b/bin/v_list_dns_domain index 72b5fee87..2f6bfd964 100755 --- a/bin/v_list_dns_domain +++ b/bin/v_list_dns_domain @@ -1,6 +1,6 @@ #!/bin/bash # info: list dns domain -# arguments: user domain [format] +# options: user domain [format] # # The function for getting all DNS domain's parameters. diff --git a/bin/v_list_dns_domains b/bin/v_list_dns_domains index 7a76d0bc7..5734f5a43 100755 --- a/bin/v_list_dns_domains +++ b/bin/v_list_dns_domains @@ -1,6 +1,6 @@ #!/bin/bash # info: list dns domains -# arguments: user [format] +# options: user [format] # # The function for obtaining all DNS domains of a user. diff --git a/bin/v_list_dns_template b/bin/v_list_dns_template index 1654c7b57..d0961dff3 100755 --- a/bin/v_list_dns_template +++ b/bin/v_list_dns_template @@ -1,6 +1,6 @@ #!/bin/bash # info: list dns template -# arguments: template [format] +# options: template [format] # # The function for obtaining the DNS template parameters. diff --git a/bin/v_list_dns_templates b/bin/v_list_dns_templates index bdfecd29a..5b55d10c8 100755 --- a/bin/v_list_dns_templates +++ b/bin/v_list_dns_templates @@ -1,6 +1,6 @@ #!/bin/bash # info: list dns templates -# arguments: [format] +# options: [format] # # The function for obtaining the list of all DNS templates available. diff --git a/bin/v_rebuild_cron_jobs b/bin/v_rebuild_cron_jobs index c7782aa87..c85116e48 100755 --- a/bin/v_rebuild_cron_jobs +++ b/bin/v_rebuild_cron_jobs @@ -1,6 +1,6 @@ #!/bin/bash # info: rebuild cron jobs -# arguments: user +# options: user # # The function rebuilds system cron config file for specified user. diff --git a/bin/v_rebuild_dns_domains b/bin/v_rebuild_dns_domains index 37f0724e4..b351b102b 100755 --- a/bin/v_rebuild_dns_domains +++ b/bin/v_rebuild_dns_domains @@ -1,6 +1,6 @@ #!/bin/bash # info: rebuild dns domains -# arguments: user +# options: user # # The function rebuilds BIND configuration files for all dns domains. diff --git a/bin/v_restart_cron b/bin/v_restart_cron index 642e20288..cf1e75829 100755 --- a/bin/v_restart_cron +++ b/bin/v_restart_cron @@ -1,6 +1,6 @@ #!/bin/bash # info: restart cron service -# arguments: none +# options: none # # The function tells crond service to reread its configuration files. diff --git a/bin/v_restart_dns b/bin/v_restart_dns index a5c8540d2..1f3cd75a5 100755 --- a/bin/v_restart_dns +++ b/bin/v_restart_dns @@ -1,6 +1,6 @@ #!/bin/bash # info: restart dns service -# arguments: none +# options: none # # The function tells BIND service to reload dns zone files. diff --git a/bin/v_suspend_cron_job b/bin/v_suspend_cron_job index 702ca2b29..1cde54486 100755 --- a/bin/v_suspend_cron_job +++ b/bin/v_suspend_cron_job @@ -1,6 +1,6 @@ #!/bin/bash # info: suspend cron job -# arguments: user job +# options: user job # # The function suspends a certain job of the cron scheduler. diff --git a/bin/v_suspend_cron_jobs b/bin/v_suspend_cron_jobs index 879068aed..39f2c0f7b 100755 --- a/bin/v_suspend_cron_jobs +++ b/bin/v_suspend_cron_jobs @@ -1,6 +1,6 @@ #!/bin/bash # info: Suspending sys cron jobs -# arguments: user +# options: user # # The function suspends all user cron jobs. diff --git a/bin/v_suspend_db_base b/bin/v_suspend_db_base index 4d5204962..f31d6cd0f 100755 --- a/bin/v_suspend_db_base +++ b/bin/v_suspend_db_base @@ -1,6 +1,6 @@ #!/bin/bash # info: suspend database -# arguments: user database +# options: user database # # The function for suspending a certain user database. diff --git a/bin/v_suspend_db_bases b/bin/v_suspend_db_bases index 187df5202..ec6a6d453 100755 --- a/bin/v_suspend_db_bases +++ b/bin/v_suspend_db_bases @@ -1,6 +1,6 @@ #!/bin/bash # info: suspend databases -# arguments: user +# options: user # # The function for suspending of all databases of a single user. diff --git a/bin/v_suspend_dns_domain b/bin/v_suspend_dns_domain index ed6022518..6acdc12b4 100755 --- a/bin/v_suspend_dns_domain +++ b/bin/v_suspend_dns_domain @@ -1,6 +1,6 @@ #!/bin/bash # info: suspend dns domain -# arguments: user domain +# options: user domain # # The function suspends a certain user's domain. diff --git a/bin/v_suspend_dns_domains b/bin/v_suspend_dns_domains index d5c109e10..9588ce5a7 100755 --- a/bin/v_suspend_dns_domains +++ b/bin/v_suspend_dns_domains @@ -1,6 +1,6 @@ #!/bin/bash # info: suspend dns domains -# arguments: user +# options: user # # The function suspends all user's DNS domains. diff --git a/bin/v_unsuspend_cron_job b/bin/v_unsuspend_cron_job index 01818733a..fc633e2e8 100755 --- a/bin/v_unsuspend_cron_job +++ b/bin/v_unsuspend_cron_job @@ -1,6 +1,6 @@ #!/bin/bash # info: unuspend cron job -# arguments: user job +# options: user job # # The function unsuspen certain cron job. diff --git a/bin/v_unsuspend_cron_jobs b/bin/v_unsuspend_cron_jobs index dcaa6a65b..ad4e3c3d6 100755 --- a/bin/v_unsuspend_cron_jobs +++ b/bin/v_unsuspend_cron_jobs @@ -1,6 +1,6 @@ #!/bin/bash # info: unuspend sys cron -# arguments: user +# options: user # # The function unsuspends all suspended cron jobs. diff --git a/bin/v_unsuspend_db_base b/bin/v_unsuspend_db_base index 2d46de4a6..94b82afc5 100755 --- a/bin/v_unsuspend_db_base +++ b/bin/v_unsuspend_db_base @@ -1,6 +1,6 @@ #!/bin/bash # info: unsuspend database -# arguments: user database +# options: user database # # The function for unsuspending database. diff --git a/bin/v_update_db_bases_disk b/bin/v_update_db_bases_disk index 4cfce5b92..91c9bbc06 100755 --- a/bin/v_update_db_bases_disk +++ b/bin/v_update_db_bases_disk @@ -1,6 +1,6 @@ #!/bin/bash # info: update databases disk usage -# arguments: user +# options: user # # The function recalculates disk usage for all user databases.