2020-11-04 19:58:54 +01:00
|
|
|
---
|
2020-05-16 21:43:23 +02:00
|
|
|
- name: Add backports repositories
|
|
|
|
apt_repository:
|
|
|
|
repo: "{{ item }} http://deb.debian.org/debian buster-backports main contrib non-free"
|
|
|
|
loop:
|
|
|
|
- "deb"
|
|
|
|
- "deb-src"
|
|
|
|
|
|
|
|
- name: Ensure /var/www exists
|
|
|
|
file:
|
|
|
|
name: "/var/www"
|
2020-11-04 19:31:50 +01:00
|
|
|
state: directory
|
|
|
|
mode: 0755
|
2020-05-16 21:43:23 +02:00
|
|
|
|
|
|
|
- name: Clone re2o repo
|
|
|
|
git:
|
|
|
|
repo: "https://gitlab.federez.net/re2o/re2o.git"
|
|
|
|
dest: "/var/www/re2o"
|
2020-08-06 09:57:54 +02:00
|
|
|
version: "dev"
|
2020-05-16 21:43:23 +02:00
|
|
|
force: true
|
|
|
|
|
2020-05-21 18:06:37 +02:00
|
|
|
- name: Template local re2o settings
|
2020-05-16 21:43:23 +02:00
|
|
|
template:
|
2020-05-21 18:08:20 +02:00
|
|
|
src: "{{ item }}.j2"
|
|
|
|
dest: "/var/www/re2o/re2o/{{ item }}"
|
2020-11-04 19:31:50 +01:00
|
|
|
mode: 0644
|
2020-05-21 18:08:20 +02:00
|
|
|
loop:
|
|
|
|
- settings_local.py
|
|
|
|
- local_routers.py
|
2020-05-16 21:43:23 +02:00
|
|
|
|
|
|
|
# What follows is a hideous abomination.
|
|
|
|
# Blame freeradius-python3 on backports.
|
|
|
|
|
|
|
|
- name: try to install freeradius-python3 (this will fail on post-install)
|
|
|
|
apt:
|
|
|
|
name: freeradius-python3
|
2020-05-21 18:06:37 +02:00
|
|
|
default_release: buster-backports
|
2020-11-04 19:58:54 +01:00
|
|
|
update_cache: true
|
|
|
|
ignore_errors: true
|
2020-05-16 21:43:23 +02:00
|
|
|
|
|
|
|
- name: fix freeradius-python3 postinstall script
|
|
|
|
template:
|
|
|
|
src: freeradius-python3.postinst.j2
|
|
|
|
dest: /var/lib/dpkg/info/freeradius-python3.postinst
|
2020-11-04 19:31:50 +01:00
|
|
|
mode: 0644
|
2020-05-16 21:43:23 +02:00
|
|
|
|
2020-05-21 19:25:30 +02:00
|
|
|
- name: reinstall broken package (this might fail too, for different reasons)
|
2020-05-21 18:06:37 +02:00
|
|
|
apt:
|
|
|
|
name: freeradius-python3
|
|
|
|
default_release: buster-backports
|
2020-11-04 19:58:54 +01:00
|
|
|
force: true
|
|
|
|
ignore_errors: true
|
2020-05-21 18:06:37 +02:00
|
|
|
|
2020-05-16 21:43:23 +02:00
|
|
|
- name: Setup radius symlinks
|
|
|
|
file:
|
|
|
|
src: "/var/www/re2o/freeradius_utils/{{ item.local_prefix }}{{ item.filename }}"
|
|
|
|
dest: "/etc/freeradius/3.0/{{ item.filename }}"
|
|
|
|
state: link
|
2020-11-04 19:58:54 +01:00
|
|
|
force: true
|
2020-05-16 21:43:23 +02:00
|
|
|
loop:
|
|
|
|
- local_prefix: ""
|
|
|
|
filename: auth.py
|
|
|
|
- local_prefix: freeradius3/
|
|
|
|
filename: radiusd.conf
|
|
|
|
- local_prefix: freeradius3/
|
|
|
|
filename: mods-enabled/python
|
|
|
|
- local_prefix: freeradius3/
|
|
|
|
filename: mods-enabled/eap
|
|
|
|
|
2020-05-21 18:06:37 +02:00
|
|
|
- name: Configure freeradius
|
2020-05-16 21:43:23 +02:00
|
|
|
template:
|
|
|
|
src: "{{ item }}.j2"
|
|
|
|
dest: "/etc/freeradius/3.0/{{ item }}"
|
2020-11-04 19:31:50 +01:00
|
|
|
mode: 0640
|
2020-11-08 18:50:38 +01:00
|
|
|
owner: freerad
|
2020-05-16 21:43:23 +02:00
|
|
|
loop:
|
|
|
|
- sites-enabled/default
|
|
|
|
- sites-enabled/inner-tunnel
|
2020-09-09 23:17:15 +02:00
|
|
|
|
|
|
|
- name: Install Basic Clients/Proxy Files freeradius
|
|
|
|
template:
|
|
|
|
src: "{{ item }}.j2"
|
|
|
|
dest: "/etc/freeradius/3.0/{{ item }}"
|
2020-11-04 19:31:50 +01:00
|
|
|
mode: 0640
|
2020-11-08 18:50:38 +01:00
|
|
|
owner: freerad
|
2020-09-09 23:17:15 +02:00
|
|
|
loop:
|
|
|
|
- clients.conf
|
2020-05-21 14:19:28 +02:00
|
|
|
- proxy.conf
|
2020-09-09 23:17:15 +02:00
|
|
|
when: "'aurore_vm' not in group_names"
|
2020-05-16 21:43:23 +02:00
|
|
|
|
2020-09-09 23:17:15 +02:00
|
|
|
- name: Install Clients FedeRez Radius-Aurore
|
|
|
|
template:
|
|
|
|
src: proxy-federez.conf.j2
|
|
|
|
dest: /etc/freeradius/3.0/proxy.conf
|
|
|
|
mode: 0640
|
|
|
|
owner: freerad
|
|
|
|
when: "'aurore_vm' in group_names"
|
|
|
|
|
|
|
|
- name: Install Proxy FedeRez Radius-Aurore
|
|
|
|
template:
|
|
|
|
src: clients-federez.conf.j2
|
|
|
|
dest: /etc/freeradius/3.0/clients.conf
|
|
|
|
mode: 0640
|
|
|
|
owner: freerad
|
|
|
|
when: "'aurore_vm' in group_names"
|
2020-05-16 21:43:23 +02:00
|
|
|
|
|
|
|
- name: Install radius requirements (except freeradius-python3)
|
2020-11-08 18:13:21 +01:00
|
|
|
shell:
|
2021-02-07 17:32:44 +01:00
|
|
|
cmd: "cat apt_requirements_radius.txt | grep -v freeradius-python3 | xargs apt-get -y install"
|
2020-05-16 21:43:23 +02:00
|
|
|
chdir: /var/www/re2o/
|
|
|
|
|
2021-02-07 17:32:44 +01:00
|
|
|
- name: Install PyPi requirements for radius
|
|
|
|
command: "pip3 install -r /var/www/re2o/pip_requirements.txt"
|
2020-05-16 21:43:23 +02:00
|
|
|
|
|
|
|
# End of hideousness (hopefully).
|
2020-05-21 18:06:37 +02:00
|
|
|
|
|
|
|
- name: Configure log rotation
|
|
|
|
template:
|
|
|
|
src: "freeradius-logrotate.j2"
|
|
|
|
dest: "/etc/logrotate.d/freeradius"
|
2020-11-04 19:31:50 +01:00
|
|
|
mode: 0644
|
2020-05-21 18:06:37 +02:00
|
|
|
|
|
|
|
|
|
|
|
# Database setup
|
|
|
|
|
|
|
|
|
|
|
|
- name: Install postgresql
|
|
|
|
apt:
|
|
|
|
name:
|
|
|
|
- postgresql
|
2021-03-17 20:41:46 +01:00
|
|
|
- postgresql-client-11=11.7-0+deb10u1
|
2021-04-12 10:01:39 +02:00
|
|
|
force: true
|
2020-05-21 18:06:37 +02:00
|
|
|
|
|
|
|
- name: Install postgresql ansible module requirement(s)
|
|
|
|
pip:
|
|
|
|
name: psycopg2
|
|
|
|
|
|
|
|
- name: Create read-only user
|
|
|
|
community.general.postgresql_user:
|
|
|
|
name: re2o_ro
|
|
|
|
password: "{{ radius_pg_re2o_ro_password }}"
|
|
|
|
become_user: postgres
|
|
|
|
|
|
|
|
- name: Create replication user
|
|
|
|
community.general.postgresql_user:
|
|
|
|
name: replication
|
|
|
|
password: "{{ radius_pg_replication_password }}"
|
|
|
|
become_user: postgres
|
|
|
|
|
2020-08-06 09:57:54 +02:00
|
|
|
|
|
|
|
- name: Nuking - Stop freeradius
|
|
|
|
systemd:
|
|
|
|
name: freeradius
|
|
|
|
state: stopped
|
2020-08-08 11:32:06 +02:00
|
|
|
when: nuke_radius|default(false)
|
2020-08-06 09:57:54 +02:00
|
|
|
|
|
|
|
- name: Nuking - Remove old subscription if it exists
|
|
|
|
community.general.postgresql_subscription:
|
|
|
|
name: "re2o_subscription_{{ inventory_hostname_short | replace('-','_') }}"
|
|
|
|
db: re2o
|
|
|
|
state: absent
|
|
|
|
become_user: postgres
|
2020-08-08 11:32:06 +02:00
|
|
|
when: nuke_radius|default(false)
|
2020-11-04 19:58:54 +01:00
|
|
|
ignore_errors: true
|
2020-08-06 09:57:54 +02:00
|
|
|
|
|
|
|
- name: Nuking - Destroy old local DB if it exists
|
|
|
|
community.general.postgresql_db:
|
|
|
|
name: re2o
|
|
|
|
state: absent
|
|
|
|
become_user: postgres
|
2020-08-08 11:32:06 +02:00
|
|
|
when: nuke_radius|default(false)
|
2020-08-06 09:57:54 +02:00
|
|
|
|
2020-05-21 18:06:37 +02:00
|
|
|
- name: Create local DB
|
|
|
|
community.general.postgresql_db:
|
|
|
|
name: re2o
|
|
|
|
owner: replication
|
|
|
|
state: present
|
|
|
|
encoding: "UTF8"
|
|
|
|
lc_collate: 'fr_FR.UTF-8'
|
|
|
|
lc_ctype: 'fr_FR.UTF-8'
|
|
|
|
become_user: postgres
|
|
|
|
|
|
|
|
- name: Dump radius re2o PostgreSQL database schema from master
|
|
|
|
community.general.postgresql_db:
|
|
|
|
name: re2o
|
|
|
|
state: dump
|
|
|
|
target: /tmp/re2o-schema.sql
|
|
|
|
target_opts: '-s'
|
2020-11-02 17:25:26 +01:00
|
|
|
login_host: 10.128.0.22
|
2020-05-21 18:06:37 +02:00
|
|
|
login_user: replication
|
|
|
|
login_password: "{{ radius_pg_replication_password }}"
|
|
|
|
|
|
|
|
|
|
|
|
- name: Restore DB
|
|
|
|
tags:
|
|
|
|
- restore
|
|
|
|
community.general.postgresql_db:
|
|
|
|
name: re2o
|
|
|
|
state: restore
|
|
|
|
target: /tmp/re2o-schema.sql
|
|
|
|
target_opts: "-s"
|
|
|
|
login_host: localhost
|
|
|
|
login_user: replication
|
|
|
|
login_password: "{{ radius_pg_replication_password }}"
|
|
|
|
|
|
|
|
|
|
|
|
- name: Grant select permissions on all tables to read-only user
|
|
|
|
tags:
|
|
|
|
- perms
|
|
|
|
community.general.postgresql_privs:
|
|
|
|
database: re2o
|
|
|
|
privs: SELECT
|
|
|
|
objs: ALL_IN_SCHEMA
|
|
|
|
schema: public
|
|
|
|
roles: re2o_ro
|
|
|
|
become_user: postgres
|
|
|
|
|
|
|
|
- name: Grant usage permission on schema to read-only user
|
|
|
|
tags:
|
|
|
|
- perms
|
|
|
|
community.general.postgresql_privs:
|
|
|
|
database: re2o
|
|
|
|
privs: USAGE
|
|
|
|
objs: public
|
|
|
|
type: schema
|
|
|
|
roles: re2o_ro
|
|
|
|
become_user: postgres
|
|
|
|
|
|
|
|
- name: Set default privileges in schema
|
|
|
|
tags:
|
|
|
|
- perms
|
|
|
|
community.general.postgresql_privs:
|
|
|
|
database: re2o
|
|
|
|
privs: SELECT
|
|
|
|
schema: public
|
|
|
|
objs: TABLES
|
|
|
|
type: default_privs
|
|
|
|
roles: re2o_ro
|
|
|
|
become_user: postgres
|
|
|
|
|
|
|
|
|
|
|
|
- name: Set up subscription to main database
|
|
|
|
tags:
|
|
|
|
- sub
|
|
|
|
community.general.postgresql_subscription:
|
|
|
|
name: "re2o_subscription_{{ inventory_hostname_short | replace('-','_') }}"
|
|
|
|
connparams:
|
|
|
|
host: re2o-db.adm.auro.re
|
|
|
|
user: replication
|
|
|
|
password: "{{ radius_pg_replication_password }}"
|
|
|
|
dbname: re2o
|
|
|
|
db: re2o
|
|
|
|
publications:
|
2020-11-04 20:11:31 +01:00
|
|
|
- re2o_pub
|
2020-05-21 18:06:37 +02:00
|
|
|
become_user: postgres
|
2020-05-21 19:25:30 +02:00
|
|
|
|
|
|
|
|
|
|
|
- name: Restart freeradius, ensure enabled
|
|
|
|
systemd:
|
|
|
|
name: freeradius
|
2020-11-04 19:58:54 +01:00
|
|
|
enabled: true
|
2020-05-21 19:25:30 +02:00
|
|
|
state: restarted
|
2020-11-04 19:58:54 +01:00
|
|
|
daemon_reload: true
|