16 lines
258 B
YAML
16 lines
258 B
YAML
|
- name: Install PostgreSQL packages
|
||
|
zypper:
|
||
|
name:
|
||
|
- postgresql-server
|
||
|
- postgresql-contrib
|
||
|
state: present
|
||
|
tags:
|
||
|
- setup
|
||
|
|
||
|
- name: Install python3-psycopg2
|
||
|
zypper:
|
||
|
name: python3-psycopg2
|
||
|
state: present
|
||
|
tags:
|
||
|
- setup
|