Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Additions to config file #352

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 30 additions & 0 deletions .config
Original file line number Diff line number Diff line change
Expand Up @@ -218,6 +218,36 @@ logdays_to_keep: 30
; number of bz2 compressed archive folders to keep. Default 20
bz2_files_to_keep: 20

; number of CapturedFiles folders to keep. Default is 8
capt_dirs_to_keep: 8


; the next settings configure the archive management by space used on disc

; disabling quota management generates the reports, lists the files
; that would be deleted but prevents any action from being taken
; true = disabled, false = enabled

quota_management_disabled: true

; any one of the next three parameters missing or commented out disables
; the quota management.

; Each of the parameters is in GB.

; overall space allowance for the data directory, typically RMS_data
rms_data_quota: 4000

; space allowance for the archived directories, and files contained within
arch_dir_quota: 100

; space allowance for the bz2 files
bz2_files_quota: 100

; Therefore the space allowed for the CapturedFiles directory is
; rms_data_quota - (arch_dir_quota + bz2_files_quota)
; space used by log files and .db files is ignored


; Toggle showing maxpixel on the screen during capture
live_maxpixel_enable: false
Expand Down