Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Avalon has the ability to perform minimal management of master files after it has successfully processed them.  There are three management strategies: move, delete, or do nothing.

Move Strategy

The move strategy will move master files to the configured path once they have been processed.  This path needs to be file system accessible.

Code Block
 master_file_management:
   strategy: 'move'
   path: '/mnt/diskarray/avalon-archive'

Delete Strategy

The delete strategy will delete the master file after it has been processed.

Code Block
 master_file_management:
   strategy: 'delete'

None Strategy

The 'none' strategy will leave the master files in place after processing.

Code Block
 master_file_management:
   strategy: 'none'