From 3c4f402079845bc2031018005d892d1f6fbe4b64 Mon Sep 17 00:00:00 2001 From: Paul Ryan Date: Tue, 23 Feb 2016 15:33:50 -1000 Subject: [PATCH 1/2] Silence error about old-style php comments (#) --- templates/ini_file.erb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/ini_file.erb b/templates/ini_file.erb index 8e555b9..37a66c5 100644 --- a/templates/ini_file.erb +++ b/templates/ini_file.erb @@ -1,4 +1,4 @@ -# File Managed by Puppet +// File Managed by Puppet xdebug.default_enable=<%= default_enable %> xdebug.remote_enable=<%= remote_enable %> xdebug.remote_handler=<%= remote_handler %> From 33528275d0520a5fce2d861e66eb17b937efea52 Mon Sep 17 00:00:00 2001 From: Paul Ryan Date: Tue, 15 Mar 2016 14:41:00 -1000 Subject: [PATCH 2/2] Silence puppet deprecation warnings --- templates/ini_file.erb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/templates/ini_file.erb b/templates/ini_file.erb index 37a66c5..ff330de 100644 --- a/templates/ini_file.erb +++ b/templates/ini_file.erb @@ -1,7 +1,7 @@ // File Managed by Puppet -xdebug.default_enable=<%= default_enable %> -xdebug.remote_enable=<%= remote_enable %> -xdebug.remote_handler=<%= remote_handler %> -xdebug.remote_host=<%= remote_host %> -xdebug.remote_port=<%= remote_port %> -xdebug.remote_autostart=<%= remote_autostart %> +xdebug.default_enable=<%= @default_enable %> +xdebug.remote_enable=<%= @remote_enable %> +xdebug.remote_handler=<%= @remote_handler %> +xdebug.remote_host=<%= @remote_host %> +xdebug.remote_port=<%= @remote_port %> +xdebug.remote_autostart=<%= @remote_autostart %>