use managed by ansible macro in templates
This commit is contained in:
parent
a641ad7d43
commit
724acd512c
@ -1,7 +1,7 @@
|
|||||||
- name: resolv.conf
|
- name: resolv.conf
|
||||||
copy: src=resolv.conf dest=/etc/resolv.conf mode=0644 backup=yes
|
template: src=resolv.conf.j2 dest=/etc/resolv.conf mode=0644 backup=yes
|
||||||
- name: locale.conf
|
- name: locale.conf
|
||||||
copy: src=locale.conf dest=/etc/locale.conf mode=0644 backup=yes
|
template: src=locale.conf.j2 dest=/etc/locale.conf mode=0644 backup=yes
|
||||||
- name: /etc/hosts
|
- name: /etc/hosts
|
||||||
template: src=hosts.j2 dest=/etc/hosts mode=0644 backup=yes
|
template: src=hosts.j2 dest=/etc/hosts mode=0644 backup=yes
|
||||||
- locale_gen: name=de_DE.UTF-8 state=present
|
- locale_gen: name=de_DE.UTF-8 state=present
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
# THIS FILE IS MANAGED BY ANSIBLE, DO NOT EDIT MANUALLY
|
# {{ ansible_managed }}
|
||||||
#
|
#
|
||||||
# /etc/hosts: static lookup table for host names
|
# /etc/hosts: static lookup table for host names
|
||||||
#
|
#
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
# {{ ansible_managed }}
|
||||||
|
#
|
||||||
LANG="de_DE.UTF-8"
|
LANG="de_DE.UTF-8"
|
||||||
LC_MESSAGES="en_DK.UTF-8"
|
LC_MESSAGES="en_DK.UTF-8"
|
||||||
LC_TIME="en_DK.UTF-8"
|
LC_TIME="en_DK.UTF-8"
|
@ -1,4 +1,4 @@
|
|||||||
# THIS FILE IS MANAGED BY ANSIBLE, DO NOT EDIT MANUALLY
|
# {{ ansible_managed }}
|
||||||
#
|
#
|
||||||
# /etc/resolv.conf
|
# /etc/resolv.conf
|
||||||
#
|
#
|
Loading…
Reference in New Issue
Block a user