ansible-lint: All names should start with an uppercase letter

This commit is contained in:
Thomas Woerner
2023-01-17 12:53:02 +01:00
parent d2f9fe6325
commit 414dc06c86
13 changed files with 137 additions and 137 deletions

View File

@@ -5,18 +5,18 @@
gather_facts: no
tasks:
- name: ensure test location TestLocation is present
- name: Ensure test location TestLocation is present
ipaautomountlocation:
ipaadmin_password: SomeADMINpassword
name: TestLocation
- name: ensure test map TestMap is present
- name: Ensure test map TestMap is present
ipaautomountmap:
ipaadmin_password: SomeADMINpassword
name: TestMap
location: TestLocation
- name: ensure key NewKeyName is absent
- name: Ensure key NewKeyName is absent
ipaautomountkey:
ipaadmin_password: SomeADMINpassword
location: TestLocation
@@ -24,7 +24,7 @@
key: NewKeyName
state: absent
- name: ensure key TestKey is absent
- name: Ensure key TestKey is absent
ipaautomountkey:
ipaadmin_password: SomeADMINpassword
location: TestLocation
@@ -35,7 +35,7 @@
- name: Execute Automount Key tests
block:
### test the key creation, and modification
- name: ensure key TestKey is present
- name: Ensure key TestKey is present
ipaautomountkey:
ipaadmin_password: SomeADMINpassword
location: TestLocation
@@ -46,7 +46,7 @@
register: result
failed_when: result.failed or not result.changed
- name: ensure key TestKey is present again
- name: Ensure key TestKey is present again
ipaautomountkey:
ipaadmin_password: SomeADMINpassword
location: TestLocation
@@ -58,7 +58,7 @@
failed_when: result.failed or result.changed
## modify the key
- name: ensure key TestKey information has been updated
- name: Ensure key TestKey information has been updated
ipaautomountkey:
ipaadmin_password: SomeADMINpassword
location: TestLocation
@@ -69,7 +69,7 @@
register: result
failed_when: result.failed or not result.changed
- name: ensure key TestKey information has been updated again
- name: Ensure key TestKey information has been updated again
ipaautomountkey:
ipaadmin_password: SomeADMINpassword
location: TestLocation
@@ -81,7 +81,7 @@
failed_when: result.failed or result.changed
## modify the name
- name: ensure key TestKey has been renamed to NewKeyName
- name: Ensure key TestKey has been renamed to NewKeyName
ipaautomountkey:
ipaadmin_password: SomeADMINpassword
location: TestLocation
@@ -92,7 +92,7 @@
register: result
failed_when: result.failed or not result.changed
- name: ensure key TestKey is absent
- name: Ensure key TestKey is absent
ipaautomountkey:
ipaadmin_password: SomeADMINpassword
location: TestLocation
@@ -102,7 +102,7 @@
register: result
failed_when: result.failed or result.changed
- name: ensure key NewKeyName is present
- name: Ensure key NewKeyName is present
ipaautomountkey:
ipaadmin_password: SomeADMINpassword
location: TestLocation
@@ -113,7 +113,7 @@
register: result
failed_when: result.failed or result.changed
- name: ensure failure when state is renamed and newname is not set
- name: Ensure failure when state is renamed and newname is not set
ipaautomountkey:
ipaadmin_password: SomeADMINpassword
location: TestLocation
@@ -125,7 +125,7 @@
### cleanup after the tests
always:
- name: ensure key NewKeyName is absent
- name: Ensure key NewKeyName is absent
ipaautomountkey:
ipaadmin_password: SomeADMINpassword
location: TestLocation
@@ -133,7 +133,7 @@
key: NewKeyName
state: absent
- name: ensure key TestKey is absent
- name: Ensure key TestKey is absent
ipaautomountkey:
ipaadmin_password: SomeADMINpassword
location: TestLocation
@@ -141,14 +141,14 @@
key: NewKeyName
state: absent
- name: ensure map TestMap is absent
- name: Ensure map TestMap is absent
ipaautomountmap:
ipaadmin_password: SomeADMINpassword
name: TestMap
location: TestLocation
state: absent
- name: ensure location TestLocation is absent
- name: Ensure location TestLocation is absent
ipaautomountlocation:
ipaadmin_password: SomeADMINpassword
name: TestLocation

View File

@@ -5,7 +5,7 @@
gather_facts: false
tasks:
- name: ensure automountlocation TestLocations are absent before testing
- name: Ensure automountlocation TestLocations are absent before testing
ipaautomountlocation:
ipaadmin_password: SomeADMINpassword
ipaapi_context: "{{ ipa_context | default(omit) }}"
@@ -14,7 +14,7 @@
- TestLocation_02
state: absent
- name: ensure empty automountlocation does nothing
- name: Ensure empty automountlocation does nothing
ipaautomountlocation:
ipaadmin_password: SomeADMINpassword
ipaapi_context: "{{ ipa_context | default(omit) }}"
@@ -23,7 +23,7 @@
register: result
failed_when: not result.failed or "At least one location must be provided" not in result.msg
- name: ensure empty automountlocation does nothing on absent
- name: Ensure empty automountlocation does nothing on absent
ipaautomountlocation:
ipaadmin_password: SomeADMINpassword
ipaapi_context: "{{ ipa_context | default(omit) }}"
@@ -32,7 +32,7 @@
register: result
failed_when: not result.failed or "At least one location must be provided" not in result.msg
- name: ensure automountlocation TestLocation is present
- name: Ensure automountlocation TestLocation is present
ipaautomountlocation:
ipaadmin_password: SomeADMINpassword
ipaapi_context: "{{ ipa_context | default(omit) }}"
@@ -41,7 +41,7 @@
register: result
failed_when: not result.changed or result.failed
- name: ensure automountlocation TestLocation is present again
- name: Ensure automountlocation TestLocation is present again
ipaautomountlocation:
ipaadmin_password: SomeADMINpassword
ipaapi_context: "{{ ipa_context | default(omit) }}"
@@ -50,7 +50,7 @@
register: result
failed_when: result.changed or result.failed
- name: ensure automountlocation TestLocation is absent
- name: Ensure automountlocation TestLocation is absent
ipaautomountlocation:
ipaadmin_password: SomeADMINpassword
ipaapi_context: "{{ ipa_context | default(omit) }}"
@@ -59,7 +59,7 @@
register: result
failed_when: not result.changed or result.failed
- name: ensure automountlocation TestLocation is absent again
- name: Ensure automountlocation TestLocation is absent again
ipaautomountlocation:
ipaadmin_password: SomeADMINpassword
ipaapi_context: "{{ ipa_context | default(omit) }}"
@@ -68,7 +68,7 @@
register: result
failed_when: result.changed or result.failed
- name: ensure a list of automountlocations are present
- name: Ensure a list of automountlocations are present
ipaautomountlocation:
ipaadmin_password: SomeADMINpassword
ipaapi_context: "{{ ipa_context | default(omit) }}"
@@ -79,7 +79,7 @@
register: result
failed_when: result.failed or not result.changed
- name: ensure a list of automountlocations exist
- name: Ensure a list of automountlocations exist
ipaautomountlocation:
ipaadmin_password: SomeADMINpassword
ipaapi_context: "{{ ipa_context | default(omit) }}"
@@ -90,7 +90,7 @@
register: result
failed_when: result.changed or result.failed
- name: ensure a list of automountlocations are absent
- name: Ensure a list of automountlocations are absent
ipaautomountlocation:
ipaadmin_password: SomeADMINpassword
ipaapi_context: "{{ ipa_context | default(omit) }}"
@@ -101,7 +101,7 @@
register: result
failed_when: result.failed or not result.changed
- name: ensure multiple automountlocations are absent
- name: Ensure multiple automountlocations are absent
ipaautomountlocation:
ipaadmin_password: SomeADMINpassword
ipaapi_context: "{{ ipa_context | default(omit) }}"

View File

@@ -6,7 +6,7 @@
tasks:
# setup environment
- name: ensure test maps are absent
- name: Ensure test maps are absent
ipaautomountmap:
ipaadmin_password: SomeADMINpassword
name:
@@ -15,20 +15,20 @@
location: TestLocation
state: absent
- name: ensure location TestLocation is absent
- name: Ensure location TestLocation is absent
ipaautomountlocation:
ipaadmin_password: SomeADMINpassword
name: TestLocation
state: absent
- name: ensure map TestMap is absent
- name: Ensure map TestMap is absent
ipaautomountmap:
ipaadmin_password: SomeADMINpassword
name: TestMap
location: TestLocation
state: absent
- name: ensure location TestLocation is present
- name: Ensure location TestLocation is present
ipaautomountlocation:
ipaadmin_password: SomeADMINpassword
name: TestLocation
@@ -37,7 +37,7 @@
# TESTS
- name: Execute Automount Map tests
block:
- name: ensure map TestMap is present
- name: Ensure map TestMap is present
ipaautomountmap:
ipaadmin_password: SomeADMINpassword
name: TestMap
@@ -46,7 +46,7 @@
register: result
failed_when: result.failed or not result.changed
- name: ensure map TestMap is present again
- name: Ensure map TestMap is present again
ipaautomountmap:
ipaadmin_password: SomeADMINpassword
name: TestMap
@@ -54,7 +54,7 @@
register: result
failed_when: result.failed or result.changed
- name: ensure map TestMap has a different description
- name: Ensure map TestMap has a different description
ipaautomountmap:
ipaadmin_password: SomeADMINpassword
name: TestMap
@@ -63,7 +63,7 @@
register: result
failed_when: result.failed or not result.changed
- name: ensure map TestMap has a different description, again
- name: Ensure map TestMap has a different description, again
ipaautomountmap:
ipaadmin_password: SomeADMINpassword
name: TestMap
@@ -72,7 +72,7 @@
register: result
failed_when: result.failed or result.changed
- name: ensure map TestMap has an empty description
- name: Ensure map TestMap has an empty description
ipaautomountmap:
ipaadmin_password: SomeADMINpassword
name: TestMap
@@ -81,7 +81,7 @@
register: result
failed_when: result.failed or not result.changed
- name: ensure map TestMap has an empty description, again
- name: Ensure map TestMap has an empty description, again
ipaautomountmap:
ipaadmin_password: SomeADMINpassword
name: TestMap
@@ -90,7 +90,7 @@
register: result
failed_when: result.failed or result.changed
- name: ensure map TestMap is removed
- name: Ensure map TestMap is removed
ipaautomountmap:
ipaadmin_password: SomeADMINpassword
name: TestMap
@@ -99,7 +99,7 @@
register: result
failed_when: result.failed or not result.changed
- name: ensure map TestMap has been removed
- name: Ensure map TestMap has been removed
ipaautomountmap:
ipaadmin_password: SomeADMINpassword
name: TestMap
@@ -108,7 +108,7 @@
register: result
failed_when: result.failed or result.changed
- name: ensure map TestMap01 is present
- name: Ensure map TestMap01 is present
ipaautomountmap:
ipaadmin_password: SomeADMINpassword
name: TestMap01
@@ -117,7 +117,7 @@
register: result
failed_when: result.failed or not result.changed
- name: ensure map TestMap02 is present
- name: Ensure map TestMap02 is present
ipaautomountmap:
ipaadmin_password: SomeADMINpassword
name: TestMap02
@@ -126,7 +126,7 @@
register: result
failed_when: result.failed or not result.changed
- name: ensure TestMap01 and TestMap02 are both absent
- name: Ensure TestMap01 and TestMap02 are both absent
ipaautomountmap:
ipaadmin_password: SomeADMINpassword
name:
@@ -137,7 +137,7 @@
register: result
failed_when: result.failed or not result.changed
- name: ensure TestMap01 and TestMap02 are both absent again
- name: Ensure TestMap01 and TestMap02 are both absent again
ipaautomountmap:
ipaadmin_password: SomeADMINpassword
name:
@@ -150,7 +150,7 @@
# CLEAN UP
always:
- name: ensure test maps are absent
- name: Ensure test maps are absent
ipaautomountmap:
ipaadmin_password: SomeADMINpassword
name:
@@ -159,7 +159,7 @@
location: TestLocation
state: absent
- name: ensure location TestLocation is absent
- name: Ensure location TestLocation is absent
ipaautomountlocation:
ipaadmin_password: SomeADMINpassword
name: TestLocation