Replaces references to shell: with ansible.builtin.shell Signed-off-by: Ryan Lerch <rlerch@redhat.com>
91 lines
2.8 KiB
YAML
91 lines
2.8 KiB
YAML
---
|
|
- name: Install desired extra packages (yum)
|
|
ansible.builtin.package: state=present pkg={{ item }}
|
|
with_items:
|
|
- ntpdate
|
|
- ntp
|
|
- libsemanage-python
|
|
- libselinux-python
|
|
- iptables
|
|
when: ansible_distribution_major_version|int < 8 and ansible_distribution == 'RedHat'
|
|
tags:
|
|
- packages
|
|
|
|
- name: Install desired extra packages (dnf)
|
|
dnf:
|
|
state: present
|
|
pkg:
|
|
- chrony
|
|
- python3-libselinux
|
|
when: ansible_distribution_major_version|int > 7 and ansible_distribution == 'RedHat' and ansible_cmdline.ostree is not defined
|
|
tags:
|
|
- packages
|
|
|
|
- name: Include basessh
|
|
include_role: name=basessh
|
|
|
|
# - name: Edit hostname to be instance name - prefix hostbase var if it exists
|
|
# ansible.builtin.shell: hostname {{ hostbase }}`curl -s http://169.254.169.254/latest/meta-data/instance-id`
|
|
# tags:
|
|
# - config
|
|
|
|
- name: Add ansible root key
|
|
authorized_key: user=root key="{{ item }}"
|
|
with_file:
|
|
- /srv/web/infra/ansible/roles/base/files/ansible-pub-key
|
|
tags:
|
|
- config
|
|
- sshkeys
|
|
|
|
- name: Add root keys for sysadmin-main and other allowed users
|
|
authorized_key: user=root key="{{ item }}"
|
|
with_lines:
|
|
- "/srv/web/infra/ansible/scripts/auth-keys-from-fas @sysadmin-main {{ root_auth_users }}"
|
|
tags:
|
|
- config
|
|
- sshkeys
|
|
# https://pagure.io/fedora-infrastructure/issue/10509
|
|
ignore_errors: true
|
|
|
|
- name: Enable ssh_sysadm_login sebool
|
|
seboolean: name=ssh_sysadm_login state=yes persistent=yes
|
|
ignore_errors: true
|
|
|
|
# note - kinda should be a handler - but handlers need args
|
|
- name: Restorecon
|
|
ansible.builtin.file: path=/root/.ssh setype=ssh_home_t recurse=yes
|
|
tags:
|
|
- config
|
|
|
|
- name: Update all
|
|
ansible.builtin.command: yum -y update creates=/etc/sysconfig/global-update-applied
|
|
register: updated
|
|
when: ansible_distribution_major_version|int < 8 and ansible_distribution == 'RedHat'
|
|
tags:
|
|
- packages
|
|
|
|
- name: Update all
|
|
ansible.builtin.command: dnf -y update creates=/etc/sysconfig/global-update-applied
|
|
register: updated
|
|
when: ansible_distribution_major_version|int > 7 and ansible_distribution == 'RedHat' and ansible_cmdline.ostree is not defined
|
|
tags:
|
|
- packages
|
|
|
|
- name: Update all
|
|
ansible.builtin.command: dnf -y update creates=/etc/sysconfig/global-update-applied
|
|
register: updated
|
|
when: ansible_distribution_major_version|int >= 29 and ansible_distribution == 'Fedora' and ansible_cmdline.ostree is not defined
|
|
tags:
|
|
- packages
|
|
|
|
- name: Write out global-update-applied file if we updated
|
|
ansible.builtin.copy: content="updated" dest=/etc/sysconfig/global-update-applied
|
|
when: updated is defined
|
|
tags:
|
|
- packages
|
|
|
|
- name: Ensure tmp.mount is not masked, logrotate start would fail
|
|
systemd:
|
|
name: tmp.mount
|
|
masked: no
|
|
when: ansible_distribution_major_version|int >= 30 and ansible_distribution == 'Fedora'
|