Skip to content

Commit

Permalink
Fixes #33687 - Add warning not to directly edit settings.py
Browse files Browse the repository at this point in the history
  • Loading branch information
wbclark committed Oct 12, 2021
1 parent bb9f167 commit 2912cf1
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions templates/settings.py.erb
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
################################################################################
# !!! WARNING: DO NOT EDIT THIS FILE !!!
################################################################################
# File managed by Puppet.
# Module: <%= scope['module_name'] %>
################################################################################
# Not only are edits likely to be overwritten, there is also a strong
# possibility of breaking the system if changes are made here without making
# required corresponding changes elsewhere. Refer to the documentation used to
# install Pulpcore to determine the safe and persistent way to modify the
# configuration.
################################################################################

CONTENT_HOST = "<%= scope['pulpcore::servername'] %>"
CONTENT_ORIGIN = "https://<%= scope['pulpcore::servername'] %>"
SECRET_KEY = "<%= scope['pulpcore::django_secret_key'] %>"
Expand Down

0 comments on commit 2912cf1

Please sign in to comment.