--- /dev/null
+---
+rules:
+ braces:
+ min-spaces-inside: 0
+ max-spaces-inside: 1
+ min-spaces-inside-empty: 0
+ max-spaces-inside-empty: 1
+ brackets:
+ min-spaces-inside: 0
+ max-spaces-inside: 1
+ min-spaces-inside-empty: 0
+ max-spaces-inside-empty: 1
+ colons:
+ max-spaces-before: 0
+ max-spaces-after: 1
+ commas:
+ max-spaces-before: 1
+ min-spaces-after: 1
+ max-spaces-after: 1
+ comments:
+ level: warning
+ require-starting-space: true
+ min-spaces-from-content: 2
+ comments-indentation: disable
+ document-end: disable
+ document-start:
+ level: warning
+ present: true
+ empty-lines:
+ max: 2
+ max-start: 0
+ max-end: 1
+ hyphens:
+ max-spaces-after: 1
+ indentation:
+ spaces: consistent
+ indent-sequences: true
+ check-multi-line-strings: false
+ key-duplicates: enable
+ line-length:
+ level: warning
+ allow-non-breakable-inline-mappings: true
+ max: 99
+ new-line-at-end-of-file: enable
+ new-lines:
+ type: unix
+ trailing-spaces: enable
+ truthy:
+ level: warning
- name: "Get file stats of {{ customer_yaml_file }} ..."
stat:
path: "{{ customer_yaml_file }}"
- ignore_errors: True
- changed_when: False
+ ignore_errors: true
+ changed_when: false
register: customer_yfile_stat
- name: "Get current configured customer in {{ customer_yaml_file }} ..."
shell: "if test -f {{ customer_yaml_file }} ; then cat {{ customer_yaml_file }} | grep '^customer:' | sed -e 's/^[^:]*:[ ]*//' -e 's/[ ]*$//'; fi"
- ignore_errors: True
- changed_when: False
+ ignore_errors: true
+ changed_when: false
register: cur_customer
- name: "Get current configured project in {{ customer_yaml_file }} ..."
shell: "if test -f {{ customer_yaml_file }} ; then cat {{ customer_yaml_file }} | grep '^project:' | sed -e 's/^[^:]*:[ ]*//' -e 's/[ ]*$//'; fi"
- ignore_errors: True
- changed_when: False
+ ignore_errors: true
+ changed_when: false
register: cur_project
- name: "Set project in in {{ customer_yaml_file }}, if necessary ..."
block:
- - name: "Save project {{ cur_customer.stdout }} in {{ customer_yaml_file }} ..."
- shell: "echo -e \"---\ncustomer: {{ cur_customer.stdout }}\nproject: {{ cur_customer.stdout }}\" > {{ customer_yaml_file }}"
+ - name: "Save project {{ cur_customer.stdout }} in {{ customer_yaml_file }} ..."
+ shell: "echo -e \"---\ncustomer: {{ cur_customer.stdout }}\nproject: {{ cur_customer.stdout }}\" > {{ customer_yaml_file }}"
when: cur_project.stdout == ''