Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/profiles/applications/mariadb.py
blob: e458a45a745ab66af9ba4afbce8a95152e6082b5 (plain)
1
2
3
4
5
6
7
8
9
10
11
import archinstall

# Define the package list in order for lib to source
# which packages will be installed by this profile
__packages__ = ["mariadb"]

installation.add_additional_packages(__packages__)

installation.arch_chroot("mariadb-install-db --user=mysql --basedir=/usr --datadir=/var/lib/mysql")

installation.enable_service('mariadb')