diff options
author | CaptTrews <capttrews@gmail.com> | 2019-12-04 00:26:13 +0000 |
---|---|---|
committer | CaptTrews <capttrews@gmail.com> | 2019-12-04 00:26:13 +0000 |
commit | f4fff0b4a4ecd2e634f4dcb515bf92c20d3771ba (patch) | |
tree | 133958d96ff13a3df7bae53742d138ac9bfd2884 /tests/integration/targets/vyos_logging | |
parent | df640eaacf60e82e6cf6f8b10236894eef1cc8ce (diff) | |
download | vyos-ansible-collection-f4fff0b4a4ecd2e634f4dcb515bf92c20d3771ba.tar.gz vyos-ansible-collection-f4fff0b4a4ecd2e634f4dcb515bf92c20d3771ba.zip |
Updated from network content collector
Signed-off-by: CaptTrews <capttrews@gmail.com>
Diffstat (limited to 'tests/integration/targets/vyos_logging')
-rw-r--r-- | tests/integration/targets/vyos_logging/tasks/main.yaml | 2 | ||||
-rw-r--r-- | tests/integration/targets/vyos_logging/tests/cli/basic.yaml | 16 |
2 files changed, 9 insertions, 9 deletions
diff --git a/tests/integration/targets/vyos_logging/tasks/main.yaml b/tests/integration/targets/vyos_logging/tasks/main.yaml index 415c99d..d4cf26f 100644 --- a/tests/integration/targets/vyos_logging/tasks/main.yaml +++ b/tests/integration/targets/vyos_logging/tasks/main.yaml @@ -1,2 +1,2 @@ --- -- { include: cli.yaml, tags: ['cli'] } +- {include: cli.yaml, tags: ['cli']} diff --git a/tests/integration/targets/vyos_logging/tests/cli/basic.yaml b/tests/integration/targets/vyos_logging/tests/cli/basic.yaml index 144f8d3..d588456 100644 --- a/tests/integration/targets/vyos_logging/tests/cli/basic.yaml +++ b/tests/integration/targets/vyos_logging/tests/cli/basic.yaml @@ -83,8 +83,8 @@ - name: Add logging collections vyos.vyos.vyos_logging: aggregate: - - { dest: file, name: test1, facility: all, level: info } - - { dest: file, name: test2, facility: news, level: debug } + - {dest: file, name: test1, facility: all, level: info} + - {dest: file, name: test2, facility: news, level: debug} state: present register: result @@ -97,9 +97,9 @@ - name: Add and remove logging collections with overrides vyos.vyos.vyos_logging: aggregate: - - { dest: console, facility: all, level: info } - - { dest: file, name: test1, facility: all, level: info, state: absent } - - { dest: console, facility: daemon, level: warning } + - {dest: console, facility: all, level: info} + - {dest: file, name: test1, facility: all, level: info, state: absent} + - {dest: console, facility: daemon, level: warning} state: present register: result @@ -112,9 +112,9 @@ - name: Remove logging collections vyos.vyos.vyos_logging: aggregate: - - { dest: console, facility: all, level: info } - - { dest: console, facility: daemon, level: warning } - - { dest: file, name: test2, facility: news, level: debug } + - {dest: console, facility: all, level: info} + - {dest: console, facility: daemon, level: warning} + - {dest: file, name: test2, facility: news, level: debug} state: absent register: result |