Du kan inte välja fler än 25 ämnen
Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
123456789101112131415 |
- ---
- # Defines tasks applicable for postgreSQL
-
- - name: Install Postgres
- apt: pkg={{ item }} state=present
- with_items:
- - postgresql
- - python-psycopg2
- tags:
- - dependencies
-
- - name: Set password for PostgreSQL admin user
- become: true
- become_user: postgres
- postgresql_user: name={{ db_admin_username }} password={{ db_admin_password }} encrypted=yes
|