-
Notifications
You must be signed in to change notification settings - Fork 199
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Loading status checks…
fix ansible-linting after rebase onto main
Showing
29 changed files
with
257 additions
and
198 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
47 changes: 25 additions & 22 deletions
47
collections/ansible_collections/demo/patching/plugins/modules/win_scan_packages.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,31 +1,34 @@ | ||
#!/usr/bin/env python | ||
# -*- coding: utf-8 -*- | ||
!/usr/bin/env python | ||
-*- coding: utf-8 -*- | ||
|
||
DOCUMENTATION = ''' | ||
DOCUMENTATION = """ | ||
--- | ||
module: win_scan_packages | ||
short_description: Return Package state information as fact data | ||
description: | ||
- Return Package state information as fact data for various Packages | ||
''' | ||
""" | ||
|
||
EXAMPLES = ''' | ||
EXAMPLES = """ | ||
- monit: win_scan_packages | ||
# Example fact output: | ||
# host | success >> { | ||
# "ansible_facts": { | ||
# "packages": [ | ||
{ | ||
"name": "Mozilla Firefox 76.0.1 (x64 en-US)", | ||
"version": "76.0.1", | ||
"publisher": "Mozilla", | ||
"arch": "Win64" | ||
}, | ||
{ | ||
"name": "Mozilla Maintenance Service", | ||
"version": "76.0.1", | ||
"publisher": "Mozilla", | ||
"arch": "Win64" | ||
}, | ||
# Example fact output: | ||
# host | success >> { | ||
# "ansible_facts": { | ||
# "packages": [ | ||
# { | ||
# "name": "Mozilla Firefox 76.0.1 (x64 en-US)", | ||
# "version": "76.0.1", | ||
# "publisher": "Mozilla", | ||
# "arch": "Win64" | ||
# }, | ||
# { | ||
# "name": "Mozilla Maintenance Service", | ||
# "version": "76.0.1", | ||
# "publisher": "Mozilla", | ||
# "arch": "Win64" | ||
# } | ||
# ] | ||
# } | ||
''' | ||
# } | ||
""" |
45 changes: 24 additions & 21 deletions
45
collections/ansible_collections/demo/patching/plugins/modules/win_scan_services.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,34 +1,37 @@ | ||
#!/usr/bin/env python | ||
# -*- coding: utf-8 -*- | ||
|
||
DOCUMENTATION = ''' | ||
DOCUMENTATION = """ | ||
--- | ||
module: win_scan_services | ||
short_description: Return service state information as fact data | ||
description: | ||
- Return service state information as fact data for various service management utilities | ||
''' | ||
""" | ||
|
||
EXAMPLES = ''' | ||
EXAMPLES = """ | ||
- monit: win_scan_services | ||
# Example fact output: | ||
# host | success >> { | ||
# "ansible_facts": { | ||
# "services": [ | ||
{ | ||
"name": "AllJoyn Router Service", | ||
"win_svc_name": "AJRouter", | ||
"state": "stopped" | ||
}, | ||
{ | ||
"name": "Application Layer Gateway Service", | ||
"win_svc_name": "ALG", | ||
"state": "stopped" | ||
}, | ||
{ | ||
"name": "Application Host Helper Service", | ||
"win_svc_name": "AppHostSvc", | ||
"state": "running" | ||
}, | ||
# "ansible_facts": { | ||
# "services": [ | ||
# { | ||
# "name": "AllJoyn Router Service", | ||
# "win_svc_name": "AJRouter", | ||
# "state": "stopped" | ||
# }, | ||
# { | ||
# "name": "Application Layer Gateway Service", | ||
# "win_svc_name": "ALG", | ||
# "state": "stopped" | ||
# }, | ||
# { | ||
# "name": "Application Host Helper Service", | ||
# "win_svc_name": "AppHostSvc", | ||
# "state": "running" | ||
# } | ||
# ] | ||
# } | ||
''' | ||
# } | ||
""" |
6 changes: 3 additions & 3 deletions
6
collections/ansible_collections/demo/patching/roles/build_report_network/vars/main.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
--- | ||
file_path: "{{ web_path | default('/var/www/html/reports') }}" | ||
vendor: | ||
file_path: "{{ web_path | default('/var/www/html/reports') }}" # noqa var-naming[no-role-prefix] - TODO : we should rework roles to use variable prefix, until scope is defined, silence is the way | ||
vendor: # noqa var-naming[no-role-prefix] - TODO : we should rework roles to use variable prefix, until scope is defined, silence is the way | ||
ios: &my_value 'Cisco' | ||
nxos: *my_value | ||
iosxr: *my_value | ||
junos: "Juniper" | ||
eos: "Arista" | ||
transport: | ||
transport: # noqa var-naming[no-role-prefix] - TODO : we should rework roles to use variable prefix, until scope is defined, silence is the way | ||
cliconf: "Network_CLI" | ||
netconf: "NETCONF" | ||
nxapi: "NX-API" |
2 changes: 1 addition & 1 deletion
2
collections/ansible_collections/demo/patching/roles/build_report_windows/defaults/main.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
detailedreport: true | ||
detailedreport: true # noqa var-naming[no-role-prefix] - TODO : we should rework roles to use variable prefix, until scope is defined, silence is the way |
2 changes: 1 addition & 1 deletion
2
collections/ansible_collections/demo/patching/roles/build_report_windows/vars/main.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
file_path: /var/www/html | ||
file_path: /var/www/html # noqa var-naming[no-role-prefix] - TODO : we should rework roles to use variable prefix, until scope is defined, silence is the way |
6 changes: 3 additions & 3 deletions
6
...ions/ansible_collections/demo/patching/roles/build_report_windows_patch/defaults/main.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
--- | ||
email_from: tower@shadowman.dev | ||
to_emails: alex@shadowman.dev,tower@shadowman.dev | ||
to_emails_list: "{{ to_emails.split(',') }}" | ||
email_from: tower@shadowman.dev # noqa var-naming[no-role-prefix] - TODO : we should rework roles to use variable prefix, until scope is defined, silence is the way | ||
to_emails: alex@shadowman.dev,tower@shadowman.dev # noqa var-naming[no-role-prefix] - TODO : we should rework roles to use variable prefix, until scope is defined, silence is the way | ||
to_emails_list: "{{ to_emails.split(',') }}" # noqa var-naming[no-role-prefix] - TODO : we should rework roles to use variable prefix, until scope is defined, silence is the way |
2 changes: 1 addition & 1 deletion
2
collections/ansible_collections/demo/patching/roles/build_report_windows_patch/vars/main.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
file_path: /var/www/html | ||
file_path: /var/www/html # noqa var-naming[no-role-prefix] - TODO : we should rework roles to use variable prefix, until scope is defined, silence is the way |
4 changes: 2 additions & 2 deletions
4
collections/ansible_collections/demo/patching/roles/patch_linux/defaults/main.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
--- | ||
exclude_packages: | ||
exclude_packages: # noqa var-naming[no-role-prefix] - TODO : we should rework roles to use variable prefix, until scope is defined, silence is the way | ||
- authselect | ||
- authselect-compat | ||
- authselect-libs | ||
- fprintd-pam | ||
allow_reboot: true | ||
allow_reboot: true # noqa var-naming[no-role-prefix] - TODO : we should rework roles to use variable prefix, until scope is defined, silence is the way |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
collections/ansible_collections/demo/patching/roles/report_linux/defaults/main.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
detailedreport: true | ||
detailedreport: true # noqa var-naming[no-role-prefix] - TODO : we should rework roles to use variable prefix, until scope is defined, silence is the way |
2 changes: 1 addition & 1 deletion
2
collections/ansible_collections/demo/patching/roles/report_linux/vars/main.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
file_path: /var/www/html/reports | ||
file_path: /var/www/html/reports # noqa var-naming[no-role-prefix] - TODO : we should rework roles to use variable prefix, until scope is defined, silence is the way |
6 changes: 3 additions & 3 deletions
6
collections/ansible_collections/demo/patching/roles/report_linux_patching/defaults/main.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
--- | ||
email_from: tower@shadowman.dev | ||
to_emails: alex@shadowman.dev,tower@shadowman.dev | ||
to_emails_list: "{{ to_emails.split(',') }}" | ||
email_from: tower@shadowman.dev # noqa var-naming[no-role-prefix] - TODO : we should rework roles to use variable prefix, until scope is defined, silence is the way | ||
to_emails: alex@shadowman.dev,tower@shadowman.dev # noqa var-naming[no-role-prefix] - TODO : we should rework roles to use variable prefix, until scope is defined, silence is the way | ||
to_emails_list: "{{ to_emails.split(',') }}" # noqa var-naming[no-role-prefix] - TODO : we should rework roles to use variable prefix, until scope is defined, silence is the way |
2 changes: 1 addition & 1 deletion
2
collections/ansible_collections/demo/patching/roles/report_linux_patching/vars/main.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
file_path: /var/www/html/reports | ||
file_path: /var/www/html/reports # noqa var-naming[no-role-prefix] - TODO : we should rework roles to use variable prefix, until scope is defined, silence is the way |
4 changes: 2 additions & 2 deletions
4
collections/ansible_collections/demo/patching/roles/report_server/vars/Linux.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
--- | ||
doc_root: /var/www/html | ||
reports_dir: reports | ||
doc_root: /var/www/html # noqa var-naming[no-role-prefix] - TODO : we should rework roles to use variable prefix, until scope is defined, silence is the way | ||
reports_dir: reports # noqa var-naming[no-role-prefix] - TODO : we should rework roles to use variable prefix, until scope is defined, silence is the way |
4 changes: 2 additions & 2 deletions
4
collections/ansible_collections/demo/patching/roles/report_server/vars/Win32NT.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
--- | ||
doc_root: C:\Inetpub\wwwroot | ||
reports_dir: reports | ||
doc_root: C:\Inetpub\wwwroot # noqa var-naming[no-role-prefix] - TODO : we should rework roles to use variable prefix, until scope is defined, silence is the way | ||
reports_dir: reports # noqa var-naming[no-role-prefix] - TODO : we should rework roles to use variable prefix, until scope is defined, silence is the way |
2 changes: 1 addition & 1 deletion
2
collections/ansible_collections/demo/patching/roles/report_windows/defaults/main.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
detailedreport: true | ||
detailedreport: true # noqa var-naming[no-role-prefix] - TODO : we should rework roles to use variable prefix, until scope is defined, silence is the way |
2 changes: 1 addition & 1 deletion
2
collections/ansible_collections/demo/patching/roles/report_windows/vars/main.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
file_path: C:\Inetpub\wwwroot\reports | ||
file_path: C:\Inetpub\wwwroot\reports # noqa var-naming[no-role-prefix] - TODO : we should rework roles to use variable prefix, until scope is defined, silence is the way |
6 changes: 3 additions & 3 deletions
6
...ections/ansible_collections/demo/patching/roles/report_windows_patching/defaults/main.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
--- | ||
email_from: tower@shadowman.dev | ||
to_emails: alex@shadowman.dev,tower@shadowman.dev | ||
to_emails_list: "{{ to_emails.split(',') }}" | ||
email_from: tower@shadowman.dev # noqa var-naming[no-role-prefix] - TODO : we should rework roles to use variable prefix, until scope is defined, silence is the way | ||
to_emails: alex@shadowman.dev,tower@shadowman.dev # noqa var-naming[no-role-prefix] - TODO : we should rework roles to use variable prefix, until scope is defined, silence is the way | ||
to_emails_list: "{{ to_emails.split(',') }}" # noqa var-naming[no-role-prefix] - TODO : we should rework roles to use variable prefix, until scope is defined, silence is the way |
2 changes: 1 addition & 1 deletion
2
collections/ansible_collections/demo/patching/roles/report_windows_patching/vars/main.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
file_path: C:\Inetpub\wwwroot\reports | ||
file_path: C:\Inetpub\wwwroot\reports # noqa var-naming[no-role-prefix] - TODO : we should rework roles to use variable prefix, until scope is defined, silence is the way |
8 changes: 4 additions & 4 deletions
8
collections/ansible_collections/demo/satellite/roles/register_host/defaults/main.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
--- | ||
instance_name: "{{ inventory_hostname | regex_replace('_', '-') }}" | ||
activation_key: "{{ 'RHEL' + ansible_distribution_major_version + '_' + env }}" | ||
rex_user: root # "{{ ansible_user }}" | ||
force_register: true | ||
instance_name: "{{ inventory_hostname | regex_replace('_', '-') }}" # noqa var-naming[no-role-prefix] - TODO : we should rework roles to use variable prefix, until scope is defined, silence is the way | ||
activation_key: "{{ 'RHEL' + ansible_distribution_major_version + '_' + env }}" # noqa var-naming[no-role-prefix] - TODO : we should rework roles to use variable prefix, until scope is defined, silence is the way | ||
rex_user: root # "{{ ansible_user }}" # noqa var-naming[no-role-prefix] - TODO : we should rework roles to use variable prefix, until scope is defined, silence is the way | ||
force_register: true # noqa var-naming[no-role-prefix] - TODO : we should rework roles to use variable prefix, until scope is defined, silence is the way |
2 changes: 1 addition & 1 deletion
2
collections/ansible_collections/demo/satellite/roles/register_host/vars/RedHat7.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
--- | ||
rhsm_enabled_repos: | ||
rhsm_enabled_repos: # noqa var-naming[no-role-prefix] - TODO : we should rework roles to use variable prefix, until scope is defined, silence is the way | ||
- rhel-7-server-rpms | ||
# - rhel-7-server-satellite-maintenance-6.11-rpms |
2 changes: 1 addition & 1 deletion
2
collections/ansible_collections/demo/satellite/roles/register_host/vars/RedHat8.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
--- | ||
rhsm_enabled_repos: | ||
rhsm_enabled_repos: # noqa var-naming[no-role-prefix] - TODO : we should rework roles to use variable prefix, until scope is defined, silence is the way | ||
- rhel-8-for-x86_64-baseos-rpms | ||
- rhel-8-for-x86_64-appstream-rpms | ||
- satellite-client-6-for-rhel-8-x86_64-rpms |
24 changes: 12 additions & 12 deletions
24
collections/ansible_collections/demo/satellite/roles/scap_client/defaults/main.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
--- | ||
foreman_server_url: "{{ lookup('env', 'SATELLITE_SERVER') }}" | ||
foreman_username: "{{ lookup('env', 'SATELLITE_USERNAME') }}" | ||
foreman_password: "{{ lookup('env', 'SATELLITE_PASSWORD') }}" | ||
foreman_validate_certs: "{{ lookup('env', 'FOREMAN_VALIDATE_CERTS') | default(true) }}" | ||
capsule_server: "{{ foreman_server_url }}" | ||
capsule_port: '9090' | ||
policy_name: 'all' | ||
policy_scan: "{{ policy_name }}" | ||
crontab_hour: 2 | ||
crontab_minute: 0 | ||
crontab_weekdays: 0 | ||
foreman_operations_scap_client_secure_logging: true | ||
foreman_server_url: "{{ lookup('env', 'SATELLITE_SERVER') }}" # noqa var-naming[no-role-prefix] - TODO : we should rework roles to use variable prefix, until scope is defined, silence is the way | ||
foreman_username: "{{ lookup('env', 'SATELLITE_USERNAME') }}" # noqa var-naming[no-role-prefix] - TODO : we should rework roles to use variable prefix, until scope is defined, silence is the way | ||
foreman_password: "{{ lookup('env', 'SATELLITE_PASSWORD') }}" # noqa var-naming[no-role-prefix] - TODO : we should rework roles to use variable prefix, until scope is defined, silence is the way | ||
foreman_validate_certs: "{{ lookup('env', 'FOREMAN_VALIDATE_CERTS') | default(true) }}" # noqa var-naming[no-role-prefix] - TODO : we should rework roles to use variable prefix, until scope is defined, silence is the way | ||
capsule_server: "{{ foreman_server_url }}" # noqa var-naming[no-role-prefix] - TODO : we should rework roles to use variable prefix, until scope is defined, silence is the way | ||
capsule_port: '9090' # noqa var-naming[no-role-prefix] - TODO : we should rework roles to use variable prefix, until scope is defined, silence is the way | ||
policy_name: 'all' # noqa var-naming[no-role-prefix] - TODO : we should rework roles to use variable prefix, until scope is defined, silence is the way | ||
policy_scan: "{{ policy_name }}" # noqa var-naming[no-role-prefix] - TODO : we should rework roles to use variable prefix, until scope is defined, silence is the way | ||
crontab_hour: 2 # noqa var-naming[no-role-prefix] - TODO : we should rework roles to use variable prefix, until scope is defined, silence is the way | ||
crontab_minute: 0 # noqa var-naming[no-role-prefix] - TODO : we should rework roles to use variable prefix, until scope is defined, silence is the way | ||
crontab_weekdays: 0 # noqa var-naming[no-role-prefix] - TODO : we should rework roles to use variable prefix, until scope is defined, silence is the way | ||
foreman_operations_scap_client_secure_logging: true # noqa var-naming[no-role-prefix] - TODO : we should rework roles to use variable prefix, until scope is defined, silence is the way |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -34,4 +34,3 @@ controller_templates: | |
notification_templates_error: Telemetry | ||
credentials: | ||
- "OpenShift Credential" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters