Skip to content
This repository has been archived by the owner on Dec 26, 2020. It is now read-only.

Fix squash_actions deprecation in test playbooks #228

Merged
merged 1 commit into from
Jun 6, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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