Browse Source

Docs update

Gautam Aggarwal 2 months ago
parent
commit
36265eea7d
2 changed files with 8 additions and 8 deletions
  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: |
             Whether to apply default actions (e.g., backup) when no arguments
             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.
         example: true

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

@@ -296,15 +296,19 @@ skip_actions:
     - 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
 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