Skip to content

Commit 699015a

Browse files
committed
Renamed 'arguments' with 'options'
1 parent 41da503 commit 699015a

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

44 files changed

+44
-44
lines changed

bin/v_add_cron_job

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash
22
# info: add cron job
3-
# arguments: user min hour day month wday command [job]
3+
# options: user min hour day month wday command [job]
44
#
55
# The function adds a job to cron daemon. When executing commands, any output
66
# is mailed to user's email if parameter REPORTS is set to 'yes'.

bin/v_add_db_base

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash
22
# info: add database
3-
# arguments: user db db_user db_password type [host] [encoding]
3+
# options: user db db_user db_password type [host] [encoding]
44
#
55
# The function creates the database concatenating username and user_db.
66
# Supported yypes of databases you can get using v_list_sys_config script.

bin/v_add_db_host

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash
22
# info: add new database server
3-
# arguments: type host port db_user db_password [max_db] [tpl]
3+
# options: type host port db_user db_password [max_db] [tpl]
44
#
55
# The function add new database server to the server pool. It supports local
66
# and remote database servers, which is useful for clusters. By adding a host

bin/v_add_dns_domain

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash
22
# info: add dns domain
3-
# arguments: user domain ip [template] [exp] [soa] [ttl]
3+
# options: user domain ip [template] [exp] [soa] [ttl]
44
#
55
# The function adds DNS zone with records defined in the template. If the exp
66
# argument isn't stated, the expiration date value will be set to next year.

bin/v_add_dns_domain_record

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash
22
# info: add dns domain record
3-
# arguments: user domain record type value [id]
3+
# options: user domain record type value [id]
44
#
55
# The call is used for adding new DNS record. Complex records of TXT, MX and
66
# SRV types can be used by a filling in the 'value' argument. The function also

bin/v_change_cron_job

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash
22
# info: change cron job
3-
# arguments: user job min hour day month wday command
3+
# options: user job min hour day month wday command
44
#
55
# The function is used for changing existing job. It fully replace job
66
# parameters with new one but with same id.

bin/v_change_db_password

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash
22
# info: change database user password
3-
# arguments: user db_name db_password
3+
# options: user db_name db_password
44
#
55
# The function for changing database user password to a database. It uses the
66
# full name of database as argument.

bin/v_change_dns_domain_exp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash
22
# info: change dns domain expiriation date
3-
# arguments: user domain exp
3+
# options: user domain exp
44
#
55
# The function of changing the term of expiration domain's registration. The
66
# serial number will be refreshed automatically during update.

bin/v_change_dns_domain_ip

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash
22
# info: change dns domain ip address
3-
# arguments: user domain ip
3+
# options: user domain ip
44
#
55
# The function for changing the main ip of DNS zone.
66

bin/v_change_dns_domain_record

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash
22
# info: change dns domain record
3-
# arguments: user domain id record type value
3+
# options: user domain id record type value
44
#
55
# The function for changing DNS record.
66

0 commit comments

Comments
 (0)