diff options
author | bnewbold <bnewbold@robocracy.org> | 2016-04-27 00:51:09 -0400 |
---|---|---|
committer | bnewbold <bnewbold@robocracy.org> | 2016-04-27 00:51:09 -0400 |
commit | e94e5ced22b16ca0e62eb26659fdc1768f5ffda8 (patch) | |
tree | 39e6924fa69c3cd808d6c542ebe907da17b008bb /roles | |
parent | 5b30c839eff6a4da6548637449f3d72e775f8876 (diff) | |
download | infra-e94e5ced22b16ca0e62eb26659fdc1768f5ffda8.tar.gz infra-e94e5ced22b16ca0e62eb26659fdc1768f5ffda8.zip |
add many {{ ansible_managed }} blocks to template/copied files
Diffstat (limited to 'roles')
7 files changed, 10 insertions, 5 deletions
diff --git a/roles/git/templates/etc_default_git-daemon.j2 b/roles/git/templates/etc_default_git-daemon.j2 index 36863c0..3c03fb2 100644 --- a/roles/git/templates/etc_default_git-daemon.j2 +++ b/roles/git/templates/etc_default_git-daemon.j2 @@ -1,6 +1,7 @@ # Defaults for git-daemon initscript # sourced by /etc/init.d/git-daemon -# installed at /etc/default/git-daemon by the maintainer scripts + +# {{ ansible_managed }} # # This is a POSIX shell fragment diff --git a/roles/git/templates/etc_nginx_sites-available_cgit.j2 b/roles/git/templates/etc_nginx_sites-available_cgit.j2 index 511c6ad..903d38c 100644 --- a/roles/git/templates/etc_nginx_sites-available_cgit.j2 +++ b/roles/git/templates/etc_nginx_sites-available_cgit.j2 @@ -1,3 +1,4 @@ +# {{ ansible_managed }} server { diff --git a/roles/git/templates/home_git_gitolite_rc.j2 b/roles/git/templates/home_git_gitolite_rc.j2 index a9cd666..ef82851 100644 --- a/roles/git/templates/home_git_gitolite_rc.j2 +++ b/roles/git/templates/home_git_gitolite_rc.j2 @@ -1,5 +1,7 @@ # configuration variables for gitolite
+# {{ ansible_managed }}
+
# This file is in perl syntax. But you do NOT need to know perl to edit it --
# just mind the commas, use single quotes unless you know what you're doing,
# and make sure the brackets and braces stay matched up!
diff --git a/roles/mediagoblin/templates/etc_nginx_sites-available_mediagoblin.j2 b/roles/mediagoblin/templates/etc_nginx_sites-available_mediagoblin.j2 index 5a2c9ba..817f02c 100644 --- a/roles/mediagoblin/templates/etc_nginx_sites-available_mediagoblin.j2 +++ b/roles/mediagoblin/templates/etc_nginx_sites-available_mediagoblin.j2 @@ -1,3 +1,4 @@ +# {{ ansible_managed }} server { diff --git a/roles/mediagoblin/templates/mediagoblin_local.ini.j2 b/roles/mediagoblin/templates/mediagoblin_local.ini.j2 index 0b047f7..535cb0a 100644 --- a/roles/mediagoblin/templates/mediagoblin_local.ini.j2 +++ b/roles/mediagoblin/templates/mediagoblin_local.ini.j2 @@ -1,5 +1,4 @@ -# If you want to make changes to this file, first copy it to -# mediagoblin_local.ini, then make the changes there. +# {{ ansible_managed }} # # If you don't see what you need here, have a look at mediagoblin/config_spec.ini # It defines types and defaults so it's a good place to look for documentation diff --git a/roles/mediagoblin/templates/paste_local.ini.j2 b/roles/mediagoblin/templates/paste_local.ini.j2 index 08af880..fef637e 100644 --- a/roles/mediagoblin/templates/paste_local.ini.j2 +++ b/roles/mediagoblin/templates/paste_local.ini.j2 @@ -1,5 +1,4 @@ -# If you want to make changes to this file, first copy it to -# paste_local.ini, then make the changes there. +# {{ ansible_managed }} [DEFAULT] # Set to true to enable web-based debugging messages and etc. diff --git a/roles/nginx/templates/etc_nginx_sites-available_default.j2 b/roles/nginx/templates/etc_nginx_sites-available_default.j2 index 1b0ec79..70c5a74 100644 --- a/roles/nginx/templates/etc_nginx_sites-available_default.j2 +++ b/roles/nginx/templates/etc_nginx_sites-available_default.j2 @@ -1,3 +1,5 @@ +# {{ ansible_managed }} + # Default server configuration server { listen 80 default_server; |