Просмотр исходного кода

Renamed 'arguments' with 'options'

Serghey Rodin 14 лет назад
Родитель
Сommit
699015ade1
44 измененных файлов с 44 добавлено и 44 удалено
  1. 1 1
      bin/v_add_cron_job
  2. 1 1
      bin/v_add_db_base
  3. 1 1
      bin/v_add_db_host
  4. 1 1
      bin/v_add_dns_domain
  5. 1 1
      bin/v_add_dns_domain_record
  6. 1 1
      bin/v_change_cron_job
  7. 1 1
      bin/v_change_db_password
  8. 1 1
      bin/v_change_dns_domain_exp
  9. 1 1
      bin/v_change_dns_domain_ip
  10. 1 1
      bin/v_change_dns_domain_record
  11. 1 1
      bin/v_change_dns_domain_soa
  12. 1 1
      bin/v_change_dns_domain_tpl
  13. 1 1
      bin/v_change_dns_domain_ttl
  14. 1 1
      bin/v_delete_cron_job
  15. 1 1
      bin/v_delete_db_base
  16. 1 1
      bin/v_delete_db_dbases
  17. 1 1
      bin/v_delete_db_host
  18. 1 1
      bin/v_delete_dns_domain
  19. 1 1
      bin/v_delete_dns_domain_record
  20. 1 1
      bin/v_delete_dns_domains
  21. 1 1
      bin/v_get_dns_domain_value
  22. 1 1
      bin/v_list_cron_jobs
  23. 1 1
      bin/v_list_db_base
  24. 1 1
      bin/v_list_db_bases
  25. 1 1
      bin/v_list_db_host
  26. 1 1
      bin/v_list_db_hosts
  27. 1 1
      bin/v_list_dns_domain
  28. 1 1
      bin/v_list_dns_domains
  29. 1 1
      bin/v_list_dns_template
  30. 1 1
      bin/v_list_dns_templates
  31. 1 1
      bin/v_rebuild_cron_jobs
  32. 1 1
      bin/v_rebuild_dns_domains
  33. 1 1
      bin/v_restart_cron
  34. 1 1
      bin/v_restart_dns
  35. 1 1
      bin/v_suspend_cron_job
  36. 1 1
      bin/v_suspend_cron_jobs
  37. 1 1
      bin/v_suspend_db_base
  38. 1 1
      bin/v_suspend_db_bases
  39. 1 1
      bin/v_suspend_dns_domain
  40. 1 1
      bin/v_suspend_dns_domains
  41. 1 1
      bin/v_unsuspend_cron_job
  42. 1 1
      bin/v_unsuspend_cron_jobs
  43. 1 1
      bin/v_unsuspend_db_base
  44. 1 1
      bin/v_update_db_bases_disk

+ 1 - 1
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'.

+ 1 - 1
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.

+ 1 - 1
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

+ 1 - 1
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.

+ 1 - 1
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

+ 1 - 1
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.

+ 1 - 1
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.

+ 1 - 1
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.

+ 1 - 1
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.
 

+ 1 - 1
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.
 

+ 1 - 1
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.

+ 1 - 1
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

+ 1 - 1
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.
 

+ 1 - 1
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.
 

+ 1 - 1
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.

+ 1 - 1
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.
 

+ 1 - 1
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.

+ 1 - 1
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.

+ 1 - 1
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.
 

+ 1 - 1
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.
 

+ 1 - 1
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.
 

+ 1 - 1
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.
 

+ 1 - 1
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.
 

+ 1 - 1
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.
 

+ 1 - 1
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.
 

+ 1 - 1
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.
 

+ 1 - 1
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.
 

+ 1 - 1
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.
 

+ 1 - 1
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.
 

+ 1 - 1
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.
 

+ 1 - 1
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.
 

+ 1 - 1
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.
 

+ 1 - 1
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.
 

+ 1 - 1
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.
 

+ 1 - 1
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.
 

+ 1 - 1
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.
 

+ 1 - 1
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.
 

+ 1 - 1
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.
 

+ 1 - 1
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.
 

+ 1 - 1
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.
 

+ 1 - 1
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.
 

+ 1 - 1
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.
 

+ 1 - 1
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.
 

+ 1 - 1
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.