Replace hand-written slug with ansible_managed

There is an ansible_managed variable that can be referenced in templates
to add a comment about a file being managed by ansible. Use it.

Change-Id: I60c27cf0eb35dcd4805c3517b3b7e0c7d9a0b3ea
This commit is contained in:
Monty Taylor 2017-07-12 06:26:04 -05:00
parent 400ed600d2
commit 83acffb6b9
No known key found for this signature in database
GPG Key ID: 7BAE94BC7141A594
3 changed files with 3 additions and 9 deletions

View File

@ -1,6 +1,4 @@
# This file is generated by Ansible # {{ ansible_managed }}
# DO NOT EDIT THIS FILE BY HAND -- YOUR CHANGES WILL BE OVERWRITTEN
#
[easy_install] [easy_install]
index_url = {{ pypi_mirror }} index_url = {{ pypi_mirror }}
{% if mirror_domain is defined %} {% if mirror_domain is defined %}

View File

@ -1,6 +1,4 @@
# This file is generated by Ansible # {{ ansible_managed }}
# DO NOT EDIT THIS FILE BY HAND -- YOUR CHANGES WILL BE OVERWRITTEN
#
deb {{ package_mirror }} {{ ansible_distribution_release }} main universe deb {{ package_mirror }} {{ ansible_distribution_release }} main universe
deb {{ package_mirror }} {{ ansible_distribution_release }}-updates main universe deb {{ package_mirror }} {{ ansible_distribution_release }}-updates main universe
deb {{ package_mirror }} {{ ansible_distribution_release }}-backports main universe deb {{ package_mirror }} {{ ansible_distribution_release }}-backports main universe

View File

@ -1,6 +1,4 @@
# This file is generated by Ansible # {{ ansible_managed }}
# DO NOT EDIT THIS FILE BY HAND -- YOUR CHANGES WILL BE OVERWRITTEN
#
[global] [global]
timeout = 60 timeout = 60
index-url = {{ pypi_mirror }} index-url = {{ pypi_mirror }}