-
-
Notifications
You must be signed in to change notification settings - Fork 164
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #42 from rmnwolf/Issue41
move custom settings into settings.py.
- Loading branch information
Showing
5 changed files
with
87 additions
and
45 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
<% if @dev_listen_host -%> | ||
DEV_LISTEN_HOST = '<%= @dev_listen_host %>' | ||
<% end -%> | ||
<% if @dev_listen_port -%> | ||
DEV_LISTEN_PORT = <%= @dev_listen_port %> | ||
<% end -%> | ||
<% if @python_loglevel -%> | ||
LOGLEVEL = '<%= @python_loglevel-%>' | ||
<% end -%> | ||
<% if @puppetdb_host -%> | ||
PUPPETDB_HOST = '<%= @puppetdb_host %>' | ||
<% end -%> | ||
<% if @puppetdb_port -%> | ||
PUPPETDB_PORT = <%= @puppetdb_port %> | ||
<% end -%> | ||
<% if @puppetdb_ssl_verify -%> | ||
PUPPETDB_SSL_VERIFY = '<%= @puppetdb_ssl_verify %>' | ||
<% else -%> | ||
PUPPETDB_SSL_VERIFY = False | ||
<% end -%> | ||
<% if @puppetdb_key -%> | ||
PUPPETDB_KEY = '<%= @puppetdb_key %>' | ||
<% end-%> | ||
<% if @puppetdb_cert -%> | ||
PUPPETDB_CERT = '<%= @puppetdb_cert %>' | ||
<% end -%> | ||
<% if @puppetdb_timeout -%> | ||
PUPPETDB_TIMEOUT = <%= @puppetdb_timeout %> | ||
<% end -%> | ||
<% if @unresponsive -%> | ||
UNRESPONSIVE_HOURS = <%= @unresponsive %> | ||
<% end -%> | ||
<% if @enable_query -%> | ||
ENABLE_QUERY = True | ||
<% else -%> | ||
ENABLE_QUERY = False | ||
<% end -%> | ||
<% if @localise_timestamp -%> | ||
LOCALISE_TIMESTAMP = True | ||
<% else -%> | ||
LOCALISE_TIMESTAMP = False | ||
<% end -%> | ||
<% if @experimental -%> | ||
PUPPETDB_EXPERIMENTAL = True | ||
<% else -%> | ||
PUPPETDB_EXPERIMENTAL = False | ||
<% end -%> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters