"name": "class-del",
"resp-comment": [
"The command will return a result of 3 (empty) if the client",
- "class doesn't exist. If the client class exists, the retured",
+ "class doesn't exist. If the client class exists, the returned",
"result is 0 if the deletion was successful and the result is 1",
"if the deletion is unsuccessful."
],
"resp-comment": [
"The command will return the result of 3 (empty) if the client",
"class doesn't exist. If the client class exists, the returned",
- "result is 0 if the update was successful; the result is 1",
+ "result is 0 if the update was successful and the result is 1",
"if the update is unsuccessful."
],
"resp-syntax": [
{
"avail": "1.6.0",
"brief": [
- "This command is used to fetch selected global parameter for the server from the specified database."
+ "This command is used to fetch the selected global parameter for the server from the specified database."
],
"cmd-comment": [
"This command carries a list including exactly one name of the parameter to be fetched. The ``server-tags`` list is mandatory and it must contain exactly one server tag. Specifying an empty list, a value of ``null`` or multiple server tags will result in an error. The server tag \"all\" is allowed to fetch the global parameter value shared by all servers."
{
"avail": "1.6.0",
"brief": [
- "This command is used to fetch selected global parameter for the server from the specified database."
+ "This command is used to fetch the selected global parameter for the server from the specified database."
],
"cmd-comment": [
"This command carries a list including exactly one name of the parameter to be fetched. The ``server-tags`` list is mandatory and it must contain exactly one server tag. Specifying an empty list, a value of ``null`` or multiple server tags will result in an error. The server tag \"all\" is allowed to fetch the global parameter value shared by all servers."
"This command is used to fetch a list of all IPv4 shared networks from the configuration database."
],
"cmd-comment": [
- "The ``server-tags`` list is required for this command. This list must not be empty. It may either contain one or multiple server tags as strings or a single ``null`` value."
+ "The ``server-tags`` list is required for this command and must not be empty. It may either contain one or multiple server tags as strings or a single ``null`` value."
],
"cmd-syntax": [
"{",
"This command is used to fetch a list of all IPv6 shared networks from the configuration database."
],
"cmd-comment": [
- "The ``server-tags`` list is required for this command. This list must not be empty. It may either contain one or multiple server tags as strings or a single ``null`` value."
+ "The ``server-tags`` list is required for this command and must not be empty. It may either contain one or multiple server tags as strings or a single ``null`` value."
],
"cmd-syntax": [
"{",
"This command is used to delete a DHCPv4 option definition from the configuration database."
],
"cmd-comment": [
- "This command includes a list with exactly one option definition specification comprising an option name and code. The ``server-tags`` list is mandatory and it must contain exactly one server tag. Specifying an empty list, a value of ``null`` or multiple server tags will result in an error."
+ "This command includes a list with exactly one option definition specification, comprising an option name and code. The ``server-tags`` list is mandatory and it must contain exactly one server tag. Specifying an empty list, a value of ``null`` or multiple server tags will result in an error."
],
"cmd-syntax": [
"{",
"This command is used to delete a DHCPv6 option definition from the configuration database."
],
"cmd-comment": [
- "This command includes a list with exactly one option definition specification comprising an option name and code. The ``server-tags`` list is mandatory and it must contain exactly one server tag. Specifying an empty list, a value of ``null`` or multiple server tags will result in an error."
+ "This command includes a list with exactly one option definition specification, comprising an option name and code. The ``server-tags`` list is mandatory and it must contain exactly one server tag. Specifying an empty list, a value of ``null`` or multiple server tags will result in an error."
],
"cmd-syntax": [
"{",
"This command is used to delete an IPv4 subnet by ID from the configuration database."
],
"cmd-comment": [
- "This command includes a list with exactly one id of the subnet to be deleted. The ``server-tags`` parameter must not be specified for this command."
+ "This command includes a list with exactly one ID of the subnet to be deleted. The ``server-tags`` parameter must not be specified for this command."
],
"cmd-syntax": [
"{",
"This command is used to delete an IPv6 subnet by ID from the configuration database."
],
"cmd-comment": [
- "This command includes a list with exactly one id of the subnet to be deleted. The ``server-tags`` parameter must not be specified for this command."
+ "This command includes a list with exactly one ID of the subnet to be deleted. The ``server-tags`` parameter must not be specified for this command."
],
"cmd-syntax": [
"{",
"Deletes an existing host reservation."
],
"cmd-comment": [
- "The host reservation can be identified by either (subnet-id, ip-address) pair or a triplet of (subnet-id, identifier-type, identifier)."
+ "The host reservation can be identified by either the (subnet-id, ip-address) pair or a triplet of (subnet-id, identifier-type, identifier)."
],
"cmd-syntax": [
"{",
}
// This test verifies that database backend can operate in Read-Only mode.
-TEST_F(MySqlHostDataSourceTest, testReadOnlyDatabase) {
+TEST_F(MySqlHostDataSourceTest, DISABLED_testReadOnlyDatabase) {
testReadOnlyDatabase(MYSQL_VALID_TYPE);
}
}
// This test verifies that database backend can operate in Read-Only mode.
-TEST_F(PgSqlHostDataSourceTest, testReadOnlyDatabase) {
+TEST_F(PgSqlHostDataSourceTest, DISABLED_testReadOnlyDatabase) {
testReadOnlyDatabase(PGSQL_VALID_TYPE);
}
fi
if [ "$1" = "--modversion" ]; then
- MAJOR="1"
- MINOR="0"
- PATCH="0"
- echo "${MAJOR}.${MINOR}.${PATCH}"
+ VERSION=$(sysrepoctl -v | tr -s " " | cut -d " " -f 7)
+ echo "${VERSION}"
exit 0
fi