Skip to content

Commit

Permalink
Merge pull request #228 from Normo/fix-test
Browse files Browse the repository at this point in the history
Fix squash_actions deprecation in test playbooks
  • Loading branch information
rndmh3ro authored Jun 6, 2019
2 parents 8b71e3f + eda078b commit d6ec19e
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 8 deletions.
9 changes: 5 additions & 4 deletions tests/default.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,11 @@
- "openssh-server"
- "libselinux-python"
ignore_errors: true
- apt: name="{{item}}" state=present update_cache=true
with_items:
- "openssh-client"
- "openssh-server"
- apt: name="{{packages}}" state=present update_cache=true
vars:
packages:
- "openssh-client"
- "openssh-server"
ignore_errors: true
- file: path="/var/run/sshd" state=directory
- name: create ssh host keys
Expand Down
9 changes: 5 additions & 4 deletions tests/default_custom.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,11 @@
- "openssh-server"
- "libselinux-python"
ignore_errors: true
- apt: name="{{item}}" state=present update_cache=true
with_items:
- "openssh-client"
- "openssh-server"
- apt: name="{{packages}}" state=present update_cache=true
vars:
packages:
- "openssh-client"
- "openssh-server"
ignore_errors: true
- file: path="/var/run/sshd" state=directory
- name: create ssh host keys
Expand Down

0 comments on commit d6ec19e

Please sign in to comment.