Add mariadb role

This commit is contained in:
flyingscorpio@clevo 2022-03-07 13:25:44 +01:00
parent 36b8ff05c8
commit 500789c3c3
5 changed files with 42 additions and 7 deletions

View file

@ -11,13 +11,6 @@ etckeeper:
- run:
- sudo etckeeper commit "First commit"
mariadb:
- install:
- mariadb
- run:
command: sudo mariadb-install-db --user=mysql --basedir=/usr --datadir=/var/lib/mysql && sudo systemctl start mysqld.service && sudo mysql_secure_installation
condition: "sudo find /var/lib/mysql -mindepth 1 | read"
rsync_backup:
- run:
- sudo ln -rsi dotfiles/systemd/rsync_backup.timer /etc/systemd/system/rsync_backup.timer

View file

@ -27,3 +27,4 @@
- { role: protonvpn, tags: protonvpn }
- { role: repos, tags: repos }
- { role: libvirt, tags: libvirt }
- { role: mariadb, tags: mariadb }

View file

@ -0,0 +1,6 @@
---
- name: Start mysqld service
systemd:
name: mysqld
state: started
scope: system

View file

@ -0,0 +1,3 @@
---
dependencies:
- role: check-sudo

View file

@ -0,0 +1,32 @@
---
- name: Install mariadb (Archlinux)
become: true
pacman:
name:
- mariadb
when: ansible_distribution == 'Archlinux'
- name: Install mariadb (Debian)
become: true
apt:
name:
- mariadb
when: ansible_distribution == 'Debian'
- name: Initialize mariadb
become: true
command: mariadb-install-db --user=mysql --basedir=/usr --datadir=/var/lib/mysql
register: result
changed_when: "'table already exists!' not in result.stdout"
notify: Start mysqld service
- name: Secure the installation
become: true
command: mysql_secure_installation
when: "'table already exists!' not in result.stdout"
- name: Stop mysqld service
systemd:
name: mysqld
state: stopped
scope: system