Add role_deploy_dovecot. Add /etc/hosts record for onlyoffice.
This commit is contained in:
parent
2523f75d60
commit
7af5d065a3
38
roles/role_deploy_dovecot/README.md
Normal file
38
roles/role_deploy_dovecot/README.md
Normal file
@ -0,0 +1,38 @@
|
||||
Role Name
|
||||
=========
|
||||
|
||||
A brief description of the role goes here.
|
||||
|
||||
Requirements
|
||||
------------
|
||||
|
||||
Any pre-requisites that may not be covered by Ansible itself or the role should be mentioned here. For instance, if the role uses the EC2 module, it may be a good idea to mention in this section that the boto package is required.
|
||||
|
||||
Role Variables
|
||||
--------------
|
||||
|
||||
A description of the settable variables for this role should go here, including any variables that are in defaults/main.yml, vars/main.yml, and any variables that can/should be set via parameters to the role. Any variables that are read from other roles and/or the global scope (ie. hostvars, group vars, etc.) should be mentioned here as well.
|
||||
|
||||
Dependencies
|
||||
------------
|
||||
|
||||
A list of other roles hosted on Galaxy should go here, plus any details in regards to parameters that may need to be set for other roles, or variables that are used from other roles.
|
||||
|
||||
Example Playbook
|
||||
----------------
|
||||
|
||||
Including an example of how to use your role (for instance, with variables passed in as parameters) is always nice for users too:
|
||||
|
||||
- hosts: servers
|
||||
roles:
|
||||
- { role: username.rolename, x: 42 }
|
||||
|
||||
License
|
||||
-------
|
||||
|
||||
BSD
|
||||
|
||||
Author Information
|
||||
------------------
|
||||
|
||||
An optional section for the role authors to include contact information, or a website (HTML is not allowed).
|
2
roles/role_deploy_dovecot/defaults/main.yml
Normal file
2
roles/role_deploy_dovecot/defaults/main.yml
Normal file
@ -0,0 +1,2 @@
|
||||
---
|
||||
# defaults file for role_deploy_dovecot
|
2
roles/role_deploy_dovecot/handlers/main.yml
Normal file
2
roles/role_deploy_dovecot/handlers/main.yml
Normal file
@ -0,0 +1,2 @@
|
||||
---
|
||||
# handlers file for role_deploy_dovecot
|
52
roles/role_deploy_dovecot/meta/main.yml
Normal file
52
roles/role_deploy_dovecot/meta/main.yml
Normal file
@ -0,0 +1,52 @@
|
||||
galaxy_info:
|
||||
author: your name
|
||||
description: your role description
|
||||
company: your company (optional)
|
||||
|
||||
# If the issue tracker for your role is not on github, uncomment the
|
||||
# next line and provide a value
|
||||
# issue_tracker_url: http://example.com/issue/tracker
|
||||
|
||||
# Choose a valid license ID from https://spdx.org - some suggested licenses:
|
||||
# - BSD-3-Clause (default)
|
||||
# - MIT
|
||||
# - GPL-2.0-or-later
|
||||
# - GPL-3.0-only
|
||||
# - Apache-2.0
|
||||
# - CC-BY-4.0
|
||||
license: license (GPL-2.0-or-later, MIT, etc)
|
||||
|
||||
min_ansible_version: 2.1
|
||||
|
||||
# If this a Container Enabled role, provide the minimum Ansible Container version.
|
||||
# min_ansible_container_version:
|
||||
|
||||
#
|
||||
# Provide a list of supported platforms, and for each platform a list of versions.
|
||||
# If you don't wish to enumerate all versions for a particular platform, use 'all'.
|
||||
# To view available platforms and versions (or releases), visit:
|
||||
# https://galaxy.ansible.com/api/v1/platforms/
|
||||
#
|
||||
# platforms:
|
||||
# - name: Fedora
|
||||
# versions:
|
||||
# - all
|
||||
# - 25
|
||||
# - name: SomePlatform
|
||||
# versions:
|
||||
# - all
|
||||
# - 1.0
|
||||
# - 7
|
||||
# - 99.99
|
||||
|
||||
galaxy_tags: []
|
||||
# List tags for your role here, one per line. A tag is a keyword that describes
|
||||
# and categorizes the role. Users find roles by searching for tags. Be sure to
|
||||
# remove the '[]' above, if you add tags to this list.
|
||||
#
|
||||
# NOTE: A tag is limited to a single word comprised of alphanumeric characters.
|
||||
# Maximum 20 tags per role.
|
||||
|
||||
dependencies: []
|
||||
# List your role dependencies here, one per line. Be sure to remove the '[]' above,
|
||||
# if you add dependencies to this list.
|
170
roles/role_deploy_dovecot/tasks/main.yml
Normal file
170
roles/role_deploy_dovecot/tasks/main.yml
Normal file
@ -0,0 +1,170 @@
|
||||
---
|
||||
- name: Check if install from backup is already done
|
||||
stat:
|
||||
path: /mnt/volumes/install_states/dovecot_installed
|
||||
register: dovecot_installed_flag
|
||||
|
||||
- name: Setup volume
|
||||
ansible.builtin.include_role:
|
||||
name: role_setup_volume
|
||||
vars:
|
||||
volume: "{{ item }}"
|
||||
with_items:
|
||||
- name: mail_data
|
||||
size: 10
|
||||
vol_type: high-speed
|
||||
- name: mail_data_Sylvie
|
||||
size: 10
|
||||
vol_type: high-speed
|
||||
when: not dovecot_installed_flag.stat.exists
|
||||
|
||||
- name: change ownership of duplicity working directories
|
||||
ansible.builtin.file:
|
||||
path: "{{ item }}"
|
||||
owner: "{{ LINUX_USERNAME }}"
|
||||
group: "{{ LINUX_USERNAME }}"
|
||||
become: true
|
||||
with_items:
|
||||
- "{{ DUPLICITY_WORKDIR }}"
|
||||
- "{{ DUPLICITY_ARCHIVE_DIR }}"
|
||||
when: not dovecot_installed_flag.stat.exists
|
||||
|
||||
- name: restore volume backup
|
||||
ansible.builtin.command:
|
||||
cmd: "duplicity restore --archive-dir {{ DUPLICITY_ARCHIVE_DIR }} --name {{ item }} swift://{{ item }} /mnt/volumes/{{ item }}/data"
|
||||
environment:
|
||||
SWIFT_USERNAME: "{{ OS_USERNAME }}"
|
||||
SWIFT_PASSWORD: "{{ OS_PASSWORD }}"
|
||||
SWIFT_AUTHURL: "{{ OS_AUTH_URL }}"
|
||||
SWIFT_REGIONNAME: "{{ SWIFT_REGIONNAME }}"
|
||||
SWIFT_TENANTNAME: "{{ OS_TENANT_NAME }}"
|
||||
SWIFT_AUTHVERSION: "{{ OS_IDENTITY_API_VERSION }}"
|
||||
PASSPHRASE: "{{ DUPLICITY_PASSPHRASE}}"
|
||||
# /usr/bin/duplicity uses "-s" python argument to prevent loading modules from user's python directory,
|
||||
# this variable will override that.
|
||||
PYTHONPATH: ".local/lib/python3.9/site-packages"
|
||||
register: duplicity_result
|
||||
become: true
|
||||
with_items:
|
||||
- mail_data
|
||||
- mail_data_Sylvie
|
||||
failed_when: duplicity_result is failed and (duplicity_result.rc is not defined or duplicity_result.rc != 11)
|
||||
changed_when: duplicity_result.rc is defined and duplicity_result.rc == 0
|
||||
when: not dovecot_installed_flag.stat.exists
|
||||
|
||||
- name: Create /usr/local/docker-mounted-files/docker-mail-stack directory
|
||||
ansible.builtin.file:
|
||||
path: "/usr/local/docker-mounted-files/docker-mail-stack"
|
||||
state: directory
|
||||
mode: '0755'
|
||||
become: true
|
||||
when: not dovecot_installed_flag.stat.exists
|
||||
|
||||
- name: Retrieve config repo
|
||||
ansible.builtin.git:
|
||||
repo: "ssh://git@git.scimetis.net:2222/yohan/config.git"
|
||||
dest: "{{ remote_workdir }}/config"
|
||||
version: master
|
||||
force: true
|
||||
changed_when: false
|
||||
become: true
|
||||
when: not dovecot_installed_flag.stat.exists
|
||||
|
||||
- name: Copy config
|
||||
ansible.builtin.copy:
|
||||
src: "{{ remote_workdir }}/config/docker-mail-stack/{{ item }}"
|
||||
dest: "/usr/local/docker-mounted-files/docker-mail-stack/"
|
||||
remote_src: yes
|
||||
become: true
|
||||
with_items:
|
||||
- dovecot_expire.sh
|
||||
when: not dovecot_installed_flag.stat.exists
|
||||
|
||||
- name: Extract secret configuration from secrets.tar.gz.enc
|
||||
shell: "openssl enc -aes-256-cbc -md md5 -pass env:SECRETS_ARCHIVE_PASSPHRASE -d -in {{ remote_workdir }}/secrets.tar.gz.enc | tar -zxv -C {{ item.dir }} --strip 2 {{ item.name }}"
|
||||
with_items:
|
||||
- name: secrets/docker-mail-stack/15-lda.conf
|
||||
dir: "/usr/local/docker-mounted-files/docker-mail-stack/"
|
||||
- name: secrets/docker-mail-stack/users
|
||||
dir: "/usr/local/docker-mounted-files/docker-mail-stack/"
|
||||
environment:
|
||||
SECRETS_ARCHIVE_PASSPHRASE: "{{ lookup('env', 'SECRETS_ARCHIVE_PASSPHRASE') }}"
|
||||
become: true
|
||||
|
||||
- name: Fix permissions
|
||||
ansible.builtin.file:
|
||||
path: "/usr/local/docker-mounted-files/docker-mail-stack/{{ item.name }}"
|
||||
owner: root
|
||||
group: root
|
||||
mode: "{{ item.mode }}"
|
||||
recurse: yes
|
||||
become: true
|
||||
with_items:
|
||||
- name: dovecot_expire.sh
|
||||
mode: "u=rwx,g=rx,o="
|
||||
- name: 15-lda.conf
|
||||
mode: "u=rw,g=r,o="
|
||||
- name: users
|
||||
mode: "u=rw,g=r,o="
|
||||
when: not dovecot_installed_flag.stat.exists
|
||||
|
||||
- name: Login to {{ private_registry_domain }} and create ${XDG_RUNTIME_DIR}/containers/auth.json
|
||||
containers.podman.podman_login:
|
||||
username: "{{ private_registry_user }}"
|
||||
password: "{{ private_registry_password }}"
|
||||
registry: "{{ private_registry_domain }}"
|
||||
become: true
|
||||
when: not dovecot_installed_flag.stat.exists
|
||||
|
||||
- name: Create podman networks
|
||||
containers.podman.podman_network:
|
||||
name: "{{ item }}"
|
||||
become: true
|
||||
with_items:
|
||||
- mailnet
|
||||
when: not dovecot_installed_flag.stat.exists
|
||||
|
||||
- name: Create dovecot container
|
||||
containers.podman.podman_container:
|
||||
name: dovecot
|
||||
image: "{{ private_registry_domain }}/dovecot:57f25658c4"
|
||||
network:
|
||||
- mailnet
|
||||
ports:
|
||||
- 993:993/tcp
|
||||
- 4190:4190/tcp
|
||||
volume:
|
||||
- /mnt/volumes/mail_data/data:/home/yohan:z
|
||||
- /mnt/volumes/mail_data_Sylvie/data:/home/sylvie:z
|
||||
- /usr/local/docker-mounted-files/docker-mail-stack/dovecot_expire.sh:/root/dovecot_expire.sh:Z
|
||||
- /usr/local/docker-mounted-files/docker-mail-stack/users:/etc/dovecot/users:Z
|
||||
- /usr/local/docker-mounted-files/docker-mail-stack/15-lda.conf:/etc/dovecot/conf.d/15-lda.conf:Z
|
||||
become: true
|
||||
when: not dovecot_installed_flag.stat.exists
|
||||
|
||||
- name: Add services to /etc/hosts
|
||||
ansible.builtin.lineinfile:
|
||||
path: "/etc/hosts"
|
||||
line: "127.0.0.1 {{ item }}.{{ DOMAIN }} {{ item }}"
|
||||
become: true
|
||||
with_items:
|
||||
- imap
|
||||
- sieve
|
||||
when: not dovecot_installed_flag.stat.exists
|
||||
|
||||
# A local volume is needed to store install states
|
||||
- name: Create /mnt/volumes/install_states directory if it does not exist
|
||||
ansible.builtin.file:
|
||||
path: "/mnt/volumes/install_states"
|
||||
state: directory
|
||||
mode: '0755'
|
||||
become: true
|
||||
when: not dovecot_installed_flag.stat.exists
|
||||
|
||||
- name: Create dovecot_installed state file
|
||||
ansible.builtin.file:
|
||||
path: "/mnt/volumes/install_states/dovecot_installed"
|
||||
state: touch
|
||||
mode: '0755'
|
||||
become: true
|
||||
when: not dovecot_installed_flag.stat.exists
|
2
roles/role_deploy_dovecot/tests/inventory
Normal file
2
roles/role_deploy_dovecot/tests/inventory
Normal file
@ -0,0 +1,2 @@
|
||||
localhost
|
||||
|
5
roles/role_deploy_dovecot/tests/test.yml
Normal file
5
roles/role_deploy_dovecot/tests/test.yml
Normal file
@ -0,0 +1,5 @@
|
||||
---
|
||||
- hosts: localhost
|
||||
remote_user: root
|
||||
roles:
|
||||
- role_deploy_dovecot
|
2
roles/role_deploy_dovecot/vars/main.yml
Normal file
2
roles/role_deploy_dovecot/vars/main.yml
Normal file
@ -0,0 +1,2 @@
|
||||
---
|
||||
# vars file for role_deploy_dovecot
|
@ -34,3 +34,11 @@
|
||||
state: started
|
||||
enabled: true
|
||||
become: true
|
||||
|
||||
- name: Add services to /etc/hosts
|
||||
ansible.builtin.lineinfile:
|
||||
path: "/etc/hosts"
|
||||
line: "127.0.0.1 {{ item }}.{{ DOMAIN }} {{ item }}"
|
||||
become: true
|
||||
with_items:
|
||||
- onlyoffice-document-server
|
||||
|
@ -19,7 +19,7 @@
|
||||
|
||||
- name: Retrieve config repo
|
||||
ansible.builtin.git:
|
||||
repo: "https://git.scimetis.net/yohan/config.git"
|
||||
repo: "ssh://git@git.scimetis.net:2222/yohan/config.git"
|
||||
dest: "{{ remote_workdir }}/config"
|
||||
version: master
|
||||
force: true
|
||||
|
Loading…
Reference in New Issue
Block a user