Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/profiles/applications/postgresql.py
blob: 80ad4b66bb1b1785372e4cfcdff7a774a50c21f9 (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__ = ["postgresql"]

archinstall.storage['installation_session'].add_additional_packages(__packages__)

archinstall.storage['installation_session'].arch_chroot("initdb -D /var/lib/postgres/data", run_as='postgres')

archinstall.storage['installation_session'].enable_service('postgresql')