actions.json 640 B

12345678910111213141516171819202122
  1. [{
  2. "id": "force_backup",
  3. "name": "Create a new backup",
  4. "command": "/bin/bash scripts/actions/force_backup",
  5. "user": "root",
  6. "accepted_return_codes": [0],
  7. "description": {
  8. "en": "Run Archivist to create a new backup.",
  9. "fr": "Lance Archivist pour créer un nouveau backup."
  10. }
  11. },
  12. {
  13. "id": "clean_backups",
  14. "name": "Clean all previous backup files",
  15. "command": "/bin/bash scripts/actions/clean_backups",
  16. "user": "root",
  17. "accepted_return_codes": [0],
  18. "description": {
  19. "en": "Remove all previous backup files made by Archivist.",
  20. "fr": "Supprime tout les précédents backups créés par Archivist."
  21. }
  22. }]