ansible_distribution_release, то лучше отдельные задачи делать или можно каким-то образом в 1 указать? Сейчас у меня сделаны отдельно, но чувствую можно в 1 засунуть какими-нибудь if ...?
- name: Get puppet repo xenial
shell: |
wget http://apt.puppet.com/puppet7-release-xenial.deb
dpkg -i puppet7-release-xenial.deb
args:
executable: /bin/bash
warn: false
when:
- ansible_distribution|string == 'Ubuntu'
- ansible_distribution_release|string == 'xenial'
register: repo_xenial
- debug: msg={{ repo_xenial }}
- name: Get puppet repo bionic
shell: |
wget http://apt.puppet.com/puppet7-release-bionic.deb
dpkg -i puppet7-release-bionic.deb
args:
executable: /bin/bash
warn: false
when:
- ansible_distribution|string == 'Ubuntu'
- ansible_distribution_release|string == 'bionic'
register: repo_bionic
- debug: msg={{ repo_bionic }}
- name: Get puppet repo focal
shell: |
wget http://apt.puppet.com/puppet7-release-focal.deb
dpkg -i puppet7-release-focal.deb
args:
executable: /bin/bash
warn: false
when:
- ansible_distribution|string == 'Ubuntu'
- ansible_distribution_release|string == 'focal'
register: repo_focal
- debug: msg={{ repo_focal }}
- name: Install the nginx rpm from a remote repo package: name: http://nginx.org/packages/centos/6/noarch/RPMS/nginx-release-centos-6-0.el6.ngx.noarch.rpm state: present не надо его отдельно качать и ставить
Спасибо, это уберу.
И всё же как лучше по url ставить пакет?
Под какой дистр?
ubuntu 16/18/20 04
Обсуждают сегодня