2020-12-13 10:00:33 +00:00
|
|
|
---
|
|
|
|
# Stands up an ipsilon instance for simple SSO
|
|
|
|
- name: Configure ipsilon server
|
|
|
|
hosts: ipsilon
|
|
|
|
become: true
|
|
|
|
vars_files:
|
2021-01-03 05:18:47 +00:00
|
|
|
- vars/vaults/encpass.yml
|
2020-12-17 02:35:30 +00:00
|
|
|
- vars/ipsilon.yml
|
2020-12-13 10:00:33 +00:00
|
|
|
|
|
|
|
# This is to try to avoid the handler issue in pre/post tasks
|
|
|
|
handlers:
|
2020-12-13 11:54:31 +00:00
|
|
|
- import_tasks: handlers/main.yml
|
2020-12-13 10:00:33 +00:00
|
|
|
|
|
|
|
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"
|
2021-01-02 03:14:24 +00:00
|
|
|
success_msg: "We are able to run on this node"
|
|
|
|
fail_msg: "/etc/no-ansible exists - skipping run on this node"
|
2020-12-13 10:00:33 +00:00
|
|
|
|
2020-12-16 07:09:58 +00:00
|
|
|
# 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
|
|
|
|
|
2021-11-01 20:33:48 +00:00
|
|
|
- name: Install rocky ipsilon repo
|
2020-12-13 10:00:33 +00:00
|
|
|
yum_repository:
|
2021-11-01 20:33:48 +00:00
|
|
|
name: copr:copr.fedorainfracloud.org:nalika:rocky-idp
|
|
|
|
description: Copr repo for rocky-idp owned by nalika
|
2020-12-13 10:00:33 +00:00
|
|
|
file: copr_repos
|
2021-11-01 20:33:48 +00:00
|
|
|
baseurl: https://download.copr.fedorainfracloud.org/results/nalika/rocky-idp/epel-8-$basearch/
|
2020-12-13 10:00:33 +00:00
|
|
|
gpgcheck: true
|
2021-11-01 20:33:48 +00:00
|
|
|
gpgkey: https://download.copr.fedorainfracloud.org/results/nalika/rocky-idp/pubkey.gpg
|
2020-12-13 10:00:33 +00:00
|
|
|
enabled: true
|
|
|
|
|
2020-12-14 09:23:36 +00:00
|
|
|
# For now, this is sufficient for testing with a localhost cert. In the
|
|
|
|
# future we will come up with a way to issue either an internal cert with a
|
|
|
|
# front-facing externally signed cert, or just external altogether.
|
2020-12-13 10:00:33 +00:00
|
|
|
roles:
|
|
|
|
- role: rockylinux.ipsilon
|
|
|
|
state: present
|
|
|
|
|
|
|
|
post_tasks:
|
2021-01-17 20:04:57 +00:00
|
|
|
- name: Start and enable httpd
|
|
|
|
service:
|
|
|
|
name: httpd
|
|
|
|
state: running
|
|
|
|
enabled: true
|
|
|
|
|
2020-12-13 10:00:33 +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
|
|
|
...
|