diff --git a/templates/http/default.conf.j2 b/templates/http/default.conf.j2 index 480efdd..3e91e6e 100644 --- a/templates/http/default.conf.j2 +++ b/templates/http/default.conf.j2 @@ -1,4 +1,4 @@ -# {{ ansible_managed }} +{{ ansible_managed | comment }} {% if item.value.upstreams is defined %} {% for upstream in item.value.upstreams %} diff --git a/templates/nginx.conf.j2 b/templates/nginx.conf.j2 index 4d55796..dc103e3 100644 --- a/templates/nginx.conf.j2 +++ b/templates/nginx.conf.j2 @@ -1,4 +1,4 @@ -# {{ ansible_managed }} +{{ ansible_managed | comment }} user {{ nginx_main_template.user }}; worker_processes {{ nginx_main_template.worker_processes }}; diff --git a/templates/stream/default.conf.j2 b/templates/stream/default.conf.j2 index 442485d..53848ac 100644 --- a/templates/stream/default.conf.j2 +++ b/templates/stream/default.conf.j2 @@ -1,4 +1,4 @@ -# {{ ansible_managed }} +{{ ansible_managed | comment }} {% if item.value.upstreams is defined %} {% for upstream in item.value.upstreams %} upstream {{ item.value.upstreams[upstream].name }} {