🧹 remove deprecated/removed warn parameter
This commit is contained in:
parent
ca23125e70
commit
7f64846c0f
1 changed files with 0 additions and 4 deletions
|
@ -43,7 +43,6 @@
|
||||||
command: git config user.name
|
command: git config user.name
|
||||||
args:
|
args:
|
||||||
chdir: /etc
|
chdir: /etc
|
||||||
warn: off
|
|
||||||
register: name_configured
|
register: name_configured
|
||||||
ignore_errors: True
|
ignore_errors: True
|
||||||
changed_when: False
|
changed_when: False
|
||||||
|
@ -52,14 +51,12 @@
|
||||||
command: git config user.name "{{ etckeeper_user_name }}"
|
command: git config user.name "{{ etckeeper_user_name }}"
|
||||||
args:
|
args:
|
||||||
chdir: /etc
|
chdir: /etc
|
||||||
warn: off
|
|
||||||
when: name_configured.stdout != etckeeper_user_name
|
when: name_configured.stdout != etckeeper_user_name
|
||||||
|
|
||||||
- name: "check git user.email"
|
- name: "check git user.email"
|
||||||
command: git config user.email
|
command: git config user.email
|
||||||
args:
|
args:
|
||||||
chdir: /etc
|
chdir: /etc
|
||||||
warn: off
|
|
||||||
register: email_configured
|
register: email_configured
|
||||||
ignore_errors: True
|
ignore_errors: True
|
||||||
changed_when: False
|
changed_when: False
|
||||||
|
@ -68,7 +65,6 @@
|
||||||
command: git config user.email "{{ etckeeper_user_email }}"
|
command: git config user.email "{{ etckeeper_user_email }}"
|
||||||
args:
|
args:
|
||||||
chdir: /etc
|
chdir: /etc
|
||||||
warn: off
|
|
||||||
when: email_configured.stdout != etckeeper_user_email
|
when: email_configured.stdout != etckeeper_user_email
|
||||||
# FIXME this configures root@duster.bl0rg.net on soda
|
# FIXME this configures root@duster.bl0rg.net on soda
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue