Hi,
Which postgresql salt formula do you guys which is a requirement in init.sls?
I can only find postgres-formula from https://github.com/saltstack-formulas/postgres-formula which has a folder postgres.
This also flows over into postgresql.sls which requires postgresql-server.pkg and .service. If I want to use the postgres formula from the above url, I need to change init.sls to require postgres instead of postgresql, and the lines in postgresql.sls in this gitlab formula:
from:
require:
- pkg: postgresql-server
- service: postgresql-server
to:
require:
- pkg: postgres-server
- service: postgres-server