diff --git a/README.md b/README.md index 5da9052..bec7fff 100644 --- a/README.md +++ b/README.md @@ -28,4 +28,4 @@ MIT / BSD ## Author Information -This role was created in 2014 by [Jeff Geerling](http://jeffgeerling.com/), author of [Ansible for DevOps](http://ansiblefordevops.com/). +This role was created in 2014 by [Jeff Geerling](http://www.jeffgeerling.com/), author of [Ansible for DevOps](https://www.ansiblefordevops.com/). diff --git a/tasks/setup-Debian.yml b/tasks/setup-Debian.yml index e75c634..2c5ab93 100644 --- a/tasks/setup-Debian.yml +++ b/tasks/setup-Debian.yml @@ -1,9 +1,15 @@ --- -- name: Enable Backports repository - apt_repository: repo='deb http://ftp.debian.org/debian {{ansible_distribution_release}}-backports main' state=present filename={{ansible_distribution_release}}_backports +- name: Enable Backports repository. + apt_repository: + repo: 'deb http://ftp.debian.org/debian {{ ansible_distribution_release }}-backports main' + state: present + filename: "{{ ansible_distribution_release }}_backports" - name: Update apt cache. apt: update_cache=yes cache_valid_time=86400 - name: Install Ansible. - apt: name=ansible state=installed default_release={{ansible_distribution_release}}-backports + apt: + name: ansible + state: installed + default_release: "{{ ansible_distribution_release }}-backports" diff --git a/tasks/setup-Ubuntu.yml b/tasks/setup-Ubuntu.yml index 1a0a724..29872f0 100644 --- a/tasks/setup-Ubuntu.yml +++ b/tasks/setup-Ubuntu.yml @@ -6,4 +6,4 @@ apt: update_cache=yes cache_valid_time=86400 - name: Install Ansible. - apt: name=ansible state=installed \ No newline at end of file + apt: name=ansible state=installed