--- - name: Update web servers hosts: all remote_user: root tasks: - name: Install a list of packages ansible.builtin.apt: pkg: - mariadb-server - python3-pymysql - name: Add the user 'git' ansible.builtin.user: name: git comment: Git Username home: /home/git shell: /bin/bash - name: Create /var/lib/forgejo ansible.builtin.file: path: /var/lib/forgejo state: directory owner: git group: git mode: '0750' - name: Create /etc/forgejo ansible.builtin.file: path: /etc/forgejo state: directory owner: git group: git mode: '0500' #Database - name: Create a new database with name 'forgejo' community.mysql.mysql_db: name: forgejo state: present login_unix_socket: /run/mysqld/mysqld.sock - name: Removes anonymous user account for localhost community.mysql.mysql_user: name: '' host: localhost state: absent login_unix_socket: /run/mysqld/mysqld.sock - name: Removes all anonymous user accounts community.mysql.mysql_user: name: '' host_all: true state: absent login_unix_socket: /run/mysqld/mysqld.sock - name: Create database user forgejo community.mysql.mysql_user: name: forgejo password: "FBnA!wiEJ!W>y@!Tf3$aV&WLvPD628GM%9&JUtssr3hr" priv: 'forgejo.*:ALL' state: present login_unix_socket: /run/mysqld/mysqld.sock