Skip to content

Commit

Permalink
Rename the tasks files
Browse files Browse the repository at this point in the history
  • Loading branch information
atosatto committed Nov 9, 2019
1 parent 5981428 commit 6df86eb
Show file tree
Hide file tree
Showing 9 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,23 +43,23 @@
and ansible_python_version is version_compare('2.7.9', '<')

# Install the Docker repository
- include: "repo_{{ ansible_os_family }}.yml"
- include: "repo-{{ ansible_os_family }}.yml"
when: not skip_repo

# Install the Docker Engine
- include: docker_engine.yml
- include: setup-docker-engine.yml
when: not skip_engine

# Install docker-py
- include: docker_py.yml
- include: setup-docker-py.yml
when: not skip_docker_py

# Adds the Docker admin users to the Docker group
- include: docker_group.yml
- include: setup-docker-group.yml
when: not skip_group

# Setup the Docker Swarm Cluster
- block:
- include: swarm_cluster.yml
- include: swarm_labels.yml
- include: setup-swarm-cluster.yml
- include: setup-swarm-labels.yml
when: not skip_swarm
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion tasks/docker_group.yml → tasks/setup-docker-group.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

# See https://stackoverflow.com/a/44753457
- name: Reset ansible connection after group changes (Ansible >= 2.3.0).
include: reset_connection.yml
include: reset-connection.yml
static: false # we need to force dynamic inclusion here to avoid 'reset_connection' to be
# always executed even if the when condition evaluates to false on Ansible 2.4.x
# or to generate syntax errors on Ansible < 2.3
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit 6df86eb

Please sign in to comment.