generated from linux-system-roles/template
-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: support ansible-lint and ansible-test 2.16
Fix yamllint issue with markdownlint config Add cleanup for tests_include_vars_from_parent.yml Use correct shebang for shell scripts Ignore sanity[cannot-ignore] for ansible-lint due to python2 ipaddress library requirement for `unicode_literals` Signed-off-by: Rich Megginson <[email protected]>
- Loading branch information
Showing
13 changed files
with
19 additions
and
11 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
--- | ||
# Default state for all rules | ||
default: true | ||
|
||
|
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,2 @@ | ||
plugins/filter/vpn_ipaddr.py no-unicode-literals!skip | ||
tests/vpn/unit/test_vpn_ipaddr.py no-unicode-literals!skip | ||
lsr_role2coll_extra_script-vpn shebang!skip |
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,2 @@ | ||
plugins/filter/vpn_ipaddr.py no-unicode-literals!skip | ||
tests/vpn/unit/test_vpn_ipaddr.py no-unicode-literals!skip | ||
lsr_role2coll_extra_script-vpn shebang!skip |
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,2 @@ | ||
plugins/filter/vpn_ipaddr.py no-unicode-literals!skip | ||
tests/vpn/unit/test_vpn_ipaddr.py no-unicode-literals!skip | ||
lsr_role2coll_extra_script-vpn shebang!skip |
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,2 @@ | ||
plugins/filter/vpn_ipaddr.py no-unicode-literals!skip | ||
tests/vpn/unit/test_vpn_ipaddr.py no-unicode-literals!skip | ||
lsr_role2coll_extra_script-vpn shebang!skip |
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,2 @@ | ||
plugins/filter/vpn_ipaddr.py no-unicode-literals!skip | ||
tests/vpn/unit/test_vpn_ipaddr.py no-unicode-literals!skip | ||
lsr_role2coll_extra_script-vpn shebang!skip |
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,2 @@ | ||
plugins/filter/vpn_ipaddr.py no-unicode-literals!skip | ||
tests/vpn/unit/test_vpn_ipaddr.py no-unicode-literals!skip | ||
lsr_role2coll_extra_script-vpn shebang!skip |
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 |
---|---|---|
@@ -0,0 +1,2 @@ | ||
plugins/filter/vpn_ipaddr.py no-unicode-literals!skip | ||
tests/vpn/unit/test_vpn_ipaddr.py no-unicode-literals!skip |
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,2 @@ | ||
plugins/filter/vpn_ipaddr.py no-unicode-literals!skip | ||
tests/vpn/unit/test_vpn_ipaddr.py no-unicode-literals!skip | ||
lsr_role2coll_extra_script-vpn shebang!skip |
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 @@ | ||
#!/bin/bash | ||
#!/usr/bin/env bash | ||
|
||
set -euo pipefail | ||
if [ -n "${LSR_DEBUG:-}" ]; then | ||
|
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,8 +1,10 @@ | ||
--- | ||
# tasks file for caller | ||
|
||
- include_role: | ||
- name: Include role | ||
include_role: | ||
name: "{{ roletoinclude }}" | ||
|
||
- assert: | ||
- name: Test variable override | ||
assert: | ||
that: not __caller_override |
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