Skip to content

Instantly share code, notes, and snippets.

View doojin's full-sized avatar
🏠
Working from home

Dmitry Papka doojin

🏠
Working from home
View GitHub Profile
@doojin
doojin / mysql.yml
Last active November 15, 2023 22:14
Ansible: Minimal MySQL server setup
- name: Set up mysql server
hosts: mysql
become: yes
tasks:
- name: Install mysql server
apt:
pkg:
- mysql-server
- python3-mysqldb