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 21, 2021
1 parent 5a7991a commit 9617d79
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions templates/settings.py.erb
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
################################################################################
# File managed by Puppet module: <%= scope['module_name'] %>
################################################################################
# Not only will edits be overwritten later, 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 9617d79

Please sign in to comment.