Fix up template syntax errors no longer tolerated by Puppet 4

This commit is contained in:
Keith Whyte 2018-02-13 21:34:58 +00:00
parent 817e822b69
commit 9fbf48c8c6

View file

@ -1,7 +1,7 @@
<configuration name="cdr_pg_csv.conf" description="CDR PG CSV Format"> <configuration name="cdr_pg_csv.conf" description="CDR PG CSV Format">
<settings> <settings>
<!-- See parameters for PQconnectdb() at http://www.postgresql.org/docs/8.4/static/libpq-connect.html --> <!-- See parameters for PQconnectdb() at http://www.postgresql.org/docs/8.4/static/libpq-connect.html -->
<param name="db-info" value="host=<%= pgsql_host %> dbname=<%= pgsql_db %> user=<%= pgsql_user %> password=<%= pgsql_pwd %> connect_timeout=10" /> <param name="db-info" value="host=<%= @pgsql_host %> dbname=<%= @pgsql_db %> user=<%= @pgsql_user %> password=<%= @pgsql_pwd %> connect_timeout=10" />
<!-- CDR table name --> <!-- CDR table name -->
<param name="db-table" value="cdr"/> <param name="db-table" value="cdr"/>