瀏覽代碼

Docs update

Gautam Aggarwal 2 月之前
父節點
當前提交
36265eea7d
共有 2 個文件被更改,包括 8 次插入8 次删除
  1. 1 5
      borgmatic/config/schema.yaml
  2. 7 3
      docs/how-to/set-up-backups.md

+ 1 - 5
borgmatic/config/schema.yaml

@@ -2670,10 +2670,6 @@ properties:
         description: |
         description: |
             Whether to apply default actions (e.g., backup) when no arguments
             Whether to apply default actions (e.g., backup) when no arguments
             are supplied to the borgmatic command. If set to true, borgmatic
             are supplied to the borgmatic command. If set to true, borgmatic
-            will trigger the default actions,which include :
-            -Create backups based on your configured schedules and paths.
-            - Prune old backups based on your retention policies.
-            - Verify the integrity of your backups.
-            
+            will trigger the default actions(create, prune, compact and check).
             If set to false, borgmatic will display the help message instead.
             If set to false, borgmatic will display the help message instead.
         example: true
         example: true

+ 7 - 3
docs/how-to/set-up-backups.md

@@ -296,15 +296,19 @@ skip_actions:
     - compact
     - compact
 ```
 ```
 
 
-## Disabling default actions
+### Disabling default actions
 
 
-By default, running `borgmatic` without any arguments will perform the default backup actions (create, prune, and compact). If you want to disable this behavior and require explicit actions to be specified, add the following to your configuration:
+By default, running `borgmatic` without any arguments will perform the default
+backup actions (create, prune, compact and check). If you want to disable this
+behavior and require explicit actions to be specified, add the following to
+your configuration:
 
 
 ```yaml
 ```yaml
 default_actions: false
 default_actions: false
 ```
 ```
 
 
-With this setting, running `borgmatic` without arguments will show the help message instead of performing any actions.
+With this setting, running `borgmatic` without arguments will show the help
+message instead of performing any actions.
 
 
 
 
 ## Autopilot
 ## Autopilot