mirror of
https://github.com/Ylianst/MeshCentral.git
synced 2025-02-12 11:01:52 +00:00
add extra defaults and descriptions to schema
Signed-off-by: si458 <simonsmith5521@gmail.com>
This commit is contained in:
parent
6f78f9e276
commit
0232056219
1 changed files with 21 additions and 7 deletions
|
@ -803,24 +803,37 @@
|
||||||
},
|
},
|
||||||
"autoBackup": {
|
"autoBackup": {
|
||||||
"type": "object",
|
"type": "object",
|
||||||
|
"description": "Enable automatic backups of your meshcentral-data",
|
||||||
"properties": {
|
"properties": {
|
||||||
"mongoDumpPath": {
|
"mongoDumpPath": {
|
||||||
"type": "string"
|
"type": "string",
|
||||||
|
"default": "mongodump",
|
||||||
|
"description": "The file path of where \"mongodump\" is located. Default is \"mongodump\""
|
||||||
},
|
},
|
||||||
"mysqlDumpPath": {
|
"mysqlDumpPath": {
|
||||||
"type": "string"
|
"type": "string",
|
||||||
|
"default": "mysqldump",
|
||||||
|
"description": "The file path of where \"mysqldump\" is located. Default is \"mysqldump\""
|
||||||
},
|
},
|
||||||
"backupIntervalHours": {
|
"backupIntervalHours": {
|
||||||
"type": "integer"
|
"type": "integer",
|
||||||
|
"default": 24,
|
||||||
|
"description": "How often should the autobackup run in hours from the second meshcentral starts up? Default is every 24 hours"
|
||||||
},
|
},
|
||||||
"keepLastDaysBackup": {
|
"keepLastDaysBackup": {
|
||||||
"type": "integer"
|
"type": "integer",
|
||||||
|
"default": 10,
|
||||||
|
"description": "How many days of backups should the autobackup keep? Default is 10 Days worth"
|
||||||
},
|
},
|
||||||
"zipPassword": {
|
"zipPassword": {
|
||||||
"type": "string"
|
"type": "string",
|
||||||
|
"default": null,
|
||||||
|
"description": "When specified, the ZIP backups will be password protected with the zipPassword"
|
||||||
},
|
},
|
||||||
"backupPath": {
|
"backupPath": {
|
||||||
"type": "string"
|
"type": "string",
|
||||||
|
"default": "meshcentral-backups",
|
||||||
|
"description": "The file path where backup files are kept. The default is \"meshcentral-backups\" which sits next to \"meshcentral-data\"."
|
||||||
},
|
},
|
||||||
"googleDrive": {
|
"googleDrive": {
|
||||||
"type": "object",
|
"type": "object",
|
||||||
|
@ -2554,7 +2567,8 @@
|
||||||
},
|
},
|
||||||
"filepath": {
|
"filepath": {
|
||||||
"type": "string",
|
"type": "string",
|
||||||
"description": "The file path where recording files are kept."
|
"default": "meshcentral-recordings",
|
||||||
|
"description": "The file path where recording files are kept. The default is \"meshcentral-recordings\" which sits next to \"meshcentral-data\"."
|
||||||
},
|
},
|
||||||
"index": {
|
"index": {
|
||||||
"type": "boolean",
|
"type": "boolean",
|
||||||
|
|
Loading…
Reference in a new issue