diff --git a/bin/v_add_cron_job b/bin/v_add_cron_job index 13071991..e7bbec07 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 adfd8e74..e84a5421 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 033533e3..e5db5b4b 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 8e65eaa9..38baf6d0 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 542ad5ff..bfe34c9e 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 d223966c..7183e469 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 fb54aab4..b96d2bbb 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 273b7fe0..69067aa1 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 3ceb8eac..21501e8b 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 58a6e668..f2c11f02 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 ec978482..abebef28 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 2ed4c6f7..8d1d2268 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 7af31615..7d7b14e0 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 140998b1..f867df9a 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 f22e5406..67e36459 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 29bafcbd..5c3fc7ab 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 dfc8ef20..5e69ac49 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 232c9371..090dffc0 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 aa37c2c9..35325f4d 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 2351c8ba..1583b3c2 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 b776b13a..ab0716de 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 1deac5c9..b9ee6998 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 4a95a594..93ffe0f1 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 628bcce9..33200c42 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 fda87178..7b4ab032 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 11964ad2..f7c271a8 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 72b5fee8..2f6bfd96 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 7a76d0bc..5734f5a4 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 1654c7b5..d0961dff 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 bdfecd29..5b55d10c 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 c7782aa8..c85116e4 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 37f0724e..b351b102 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 642e2028..cf1e7582 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 a5c8540d..1f3cd75a 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 702ca2b2..1cde5448 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 879068ae..39f2c0f7 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 4d520496..f31d6cd0 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 187df520..ec6a6d45 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 ed602251..6acdc12b 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 d5c109e1..9588ce5a 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 01818733..fc633e2e 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 dcaa6a65..ad4e3c3d 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 2d46de4a..94b82afc 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 4cfce5b9..91c9bbc0 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.