removed trailing whitespaces

This commit is contained in:
nd 2019-11-02 14:54:56 +01:00
parent 851d8a4277
commit cc12f451e7
No known key found for this signature in database
GPG key ID: 21B5CD4DEE3670E9
2 changed files with 7 additions and 7 deletions

View file

@ -2,8 +2,8 @@
repo: "{{ (item.value)|combine(item.value, {'name': item.key}) }}"
- name: write deploy key
copy:
content: "{{ repo.deploykey }}"
copy:
content: "{{ repo.deploykey }}"
dest: "{{ repo.deploykeypath }}"
mode: 0600
owner: "{{ repo.user }}"
@ -17,12 +17,12 @@
- name: clone repositories
become_user: "{{ repo.user|d('root') }}"
become: true
git:
git:
depth: "{{ repo.depth|d(omit) }}"
dest: "{{ repo.path }}"
repo: "{{ repo.url }}"
accept_hostkey: true
update: true
accept_hostkey: true
update: true
key_file: "{{ repo.deploykeypath|d(None) }}"
version: "{{ repo.version|d('master') }}"
force: "{{ repo.force|d(false) }}"