From c23607fdd48acdd694aa92a9b6eb4bd88e4db75d Mon Sep 17 00:00:00 2001 From: Frank Brehm Date: Fri, 26 Nov 2021 10:53:00 +0100 Subject: [PATCH] Applying yamllint to adjust-puppet-facts-customer.yaml --- .yamllint.yaml | 49 +++++++++++++++++++++++++++++++ adjust-puppet-facts-customer.yaml | 16 +++++----- 2 files changed, 57 insertions(+), 8 deletions(-) create mode 100644 .yamllint.yaml diff --git a/.yamllint.yaml b/.yamllint.yaml new file mode 100644 index 0000000..298d97e --- /dev/null +++ b/.yamllint.yaml @@ -0,0 +1,49 @@ +--- +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 diff --git a/adjust-puppet-facts-customer.yaml b/adjust-puppet-facts-customer.yaml index a6ca62d..1b76112 100644 --- a/adjust-puppet-facts-customer.yaml +++ b/adjust-puppet-facts-customer.yaml @@ -14,27 +14,27 @@ - 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 == '' -- 2.39.5