2021-01-20 05:05:28 +00:00
|
|
|
---
|
|
|
|
# Stands up an ipsilon instance for simple SSO
|
|
|
|
- name: Configure Sigul Server
|
|
|
|
hosts: sigulserver
|
|
|
|
become: true
|
|
|
|
vars_files:
|
|
|
|
- vars/vaults/encpass.yml
|
|
|
|
- vars/common.yml
|
|
|
|
- vars/sigul_server.yml
|
|
|
|
|
|
|
|
# This is to try to avoid the handler issue in pre/post tasks
|
|
|
|
handlers:
|
|
|
|
- import_tasks: handlers/main.yml
|
|
|
|
|
|
|
|
pre_tasks:
|
|
|
|
- name: Check if ansible cannot be run here
|
|
|
|
stat:
|
|
|
|
path: /etc/no-ansible
|
|
|
|
register: no_ansible
|
|
|
|
|
|
|
|
- name: Verify if we can run ansible
|
|
|
|
assert:
|
|
|
|
that:
|
|
|
|
- "not no_ansible.stat.exists"
|
|
|
|
success_msg: "We are able to run on this node"
|
|
|
|
fail_msg: "/etc/no-ansible exists - skipping run on this node"
|
|
|
|
|
|
|
|
# EPEL and PowerTools are required for ipsilon to function
|
|
|
|
# I also couldn't find an ansible built-in to do this
|
|
|
|
- name: Enable the PowerTools repository
|
|
|
|
ini_file:
|
|
|
|
dest: /etc/yum.repos.d/CentOS-Linux-PowerTools.repo
|
|
|
|
section: powertools
|
|
|
|
option: enabled
|
|
|
|
value: 1
|
|
|
|
owner: root
|
|
|
|
group: root
|
|
|
|
mode: '0644'
|
|
|
|
|
|
|
|
# The CentOS extras repos has epel-release provided
|
|
|
|
- name: Enable the EPEL repository
|
|
|
|
yum:
|
|
|
|
name: epel-release
|
|
|
|
state: present
|
|
|
|
tags:
|
|
|
|
- packages
|
|
|
|
|
|
|
|
- name: Install rocky-tools copr
|
|
|
|
yum_repository:
|
|
|
|
name: copr:copr.fedorainfracloud.org:nalika:rockylinux-tool
|
|
|
|
description: Copr repo for rockylinux-tools owned by nalika
|
|
|
|
file: copr_repos
|
|
|
|
baseurl: https://download.copr.fedorainfracloud.org/results/nalika/rockylinux-tools/epel-8-$basearch/
|
|
|
|
gpgcheck: true
|
|
|
|
gpgkey: https://download.copr.fedorainfracloud.org/results/nalika/rockylinux-tools/pubkey.gpg
|
|
|
|
enabled: true
|
|
|
|
|
|
|
|
roles:
|
|
|
|
- role: rockylinux.sigul
|
|
|
|
state: present
|
|
|
|
|
|
|
|
- role: rockylinux.ipagetcert
|
|
|
|
state: present
|
|
|
|
|
|
|
|
post_tasks:
|
2021-01-20 05:17:01 +00:00
|
|
|
- name: Enable the sigul server
|
|
|
|
systemd:
|
|
|
|
name: sigul_server
|
2021-01-28 02:57:36 +00:00
|
|
|
state: restarted
|
2021-01-20 05:17:01 +00:00
|
|
|
enabled: true
|
|
|
|
|
2021-01-20 05:05:28 +00:00
|
|
|
- name: Touching run file that ansible has ran here
|
|
|
|
file:
|
|
|
|
path: /var/log/ansible.run
|
|
|
|
state: touch
|
|
|
|
mode: '0644'
|
|
|
|
owner: root
|
|
|
|
group: root
|
2021-08-30 05:02:24 +00:00
|
|
|
...
|