mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
8b9fe42c72
* Add new module to create/update a docker swarm. * Fix ansible-test sanity * Fix requirements * Fix requirements * Add tag for author * Test integration test. * Fix main.yml * Add linux arch * Add template * Fix test result * Integration test to create/remove a swarm manager * fix join test * Downgrade docker-py * fix rhel * Fix review documentation. * Fix whitespace * Check docker installation. * test docker install * check * Remove docker socket * Fix docker install * Fix sanity test * Rebase * Add docker_swarm maintainer * Fix review * Fix new version. * Add docker default values * Fix description. * Reworked documentation * Fix YAML error * Rebase * Fix example for update state. * Fix idempotent states. Fix states: present/absent. * Fix sanity * Fix variables sanity * Update example for absent state. * fix sanity * Wrap the contents of error message in to_native. Co-authored by: Dag Wieers <dag@wieers.com>
57 lines
1.4 KiB
YAML
57 lines
1.4 KiB
YAML
- name: Get OS version
|
|
shell: uname -r
|
|
register: os_version
|
|
|
|
- name: Install packages for Trusty
|
|
apt:
|
|
name: "{{ item }}"
|
|
state: present
|
|
update_cache: yes
|
|
with_items:
|
|
- "linux-image-extra-{{ os_version.stdout }}"
|
|
- linux-image-extra-virtual
|
|
when: ansible_distribution_release == 'trusty'
|
|
|
|
- name: Install pre-reqs
|
|
apt:
|
|
name: "{{ item }}"
|
|
state: present
|
|
update_cache: yes
|
|
with_items:
|
|
- apt-transport-https
|
|
- ca-certificates
|
|
- curl
|
|
- software-properties-common
|
|
|
|
- name: Add gpg key
|
|
shell: curl -fsSL https://download.docker.com/linux/ubuntu/gpg >key && apt-key add key
|
|
|
|
- name: Add Docker repo
|
|
shell: add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable"
|
|
|
|
- block:
|
|
- name: Prevent service restart
|
|
copy:
|
|
content: exit 101
|
|
dest: /usr/sbin/policy-rc.d
|
|
backup: yes
|
|
mode: 0755
|
|
register: policy_rc_d
|
|
|
|
- name: Install Docker CE
|
|
apt:
|
|
name: docker-ce
|
|
state: present
|
|
update_cache: yes
|
|
always:
|
|
- name: Restore /usr/sbin/policy-rc.d (if needed)
|
|
command: mv {{ policy_rc_d.backup_file }} /usr/sbin/policy-rc.d
|
|
when:
|
|
- "'backup_file' in policy_rc_d"
|
|
|
|
- name: Remove /usr/sbin/policy-rc.d (if needed)
|
|
file:
|
|
path: /usr/sbin/policy-rc.d
|
|
state: absent
|
|
when:
|
|
- "'backup_file' not in policy_rc_d"
|