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

Add more features flags and default values to system_settings.py #395

Merged
merged 1 commit into from
Jun 15, 2020
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
6 changes: 6 additions & 0 deletions sal/system_settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@
DISPLAY_NAME = 'Sal'
MANAGERS = ADMINS
DEPLOYED_ON_CHECKIN = False
ADD_TO_ALL_BUSINESS_UNITS = False
ADD_NEW_MACHINES = True
INACTIVE_UNDEPLOYED = 0
SEARCH_FACTS = []
SEARCH_CONDITIONS = []
Expand Down Expand Up @@ -86,6 +88,10 @@
# How long to keep historical facts around before pruning them.
HISTORICAL_DAYS = 180

# Facts to be discarded and not saved to the database
IGNORE_FACTS = []

# Facts to not be displayed on the Machine Information page
EXCLUDED_FACTS = {
'sshrsakey',
'sshfp_rsa',
Expand Down