| 1234567891011121314151617181920212223242526272829303132333435 |
- [force_backup]
- name = "Create a new backup"
- command = "scripts/actions/force_backup"
- # user = "root" # optional
- # cwd = "/" # optional
- # accepted_return_codes = [0, 1, 2, 3] # optional
- accepted_return_codes = [0]
- description = "Run Archivist to create a new backup."
- [clean_backups]
- name = "Clean all previous backup files"
- command = "scripts/actions/clean_backups"
- # user = "root" # optional
- # cwd = "/" # optional
- # accepted_return_codes = [0, 1, 2, 3] # optional
- accepted_return_codes = [0]
- description = "Remove all previous backup files made by Archivist."
- [reset_default_config]
- name = "Reset the config file and restore a default one."
- command = "scripts/actions/reset_default_config \"Backup_list.conf\""
- # user = "root" # optional
- # cwd = "/" # optional
- # accepted_return_codes = [0, 1, 2, 3] # optional
- accepted_return_codes = [0]
- description = "Reset the config file Backup_list.conf."
- [reset_default_app]
- name = "Reset the app with a default configuration."
- command = "scripts/actions/reset_default_app"
- # user = "root" # optional
- # cwd = "/" # optional
- # accepted_return_codes = [0, 1, 2, 3] # optional
- accepted_return_codes = [0]
- description = "Reset the app to its default configuration to try to fix potential issues.<br>This action won't remove any data added to the app.<br>However, if you have modified any configuration, it will be overwritten."
|