Commit 673e1d28 by ansible

no message

1 parent d41eff1e
Showing with 31 additions and 4 deletions
---
----
- hosts: all
become: true
tasks:
- name: Case insensitve password string match
- name: 1 Create Database WDCHAT & WDAUTHEN & USER
expect:
command: /opt/stack/postgres/postgresql/bin/psql --host=127.0.0.1 --port=7432 --username=postgres -f /tmp/configuration/1_Create.User.sql
responses:
Password for user postgres: 'password'
\ No newline at end of file
Password for user postgres: 'password'
- name: 2 Create WDCHAT Table
expect:
command: /opt/stack/postgres/postgresql/bin/psql --host=127.0.0.1 --port=7432 --username=wdchat -d WDCHAT -f /tmp/configuration/2_Create.WDCHAT.Table.sql
responses:
Password for user postgres: 'BBRyAPNh6g4H9qte'
- name: 3 Initial WDCHAT
expect:
command: /opt/stack/postgres/postgresql/bin/psql --host=127.0.0.1 --port=7432 --username=wdchat -d WDCHAT -f /tmp/configuration/3_Initial.WDCHAT.sql
responses:
Password for user postgres: 'BBRyAPNh6g4H9qte'
- name: 4 Update WDCHAT SysConfig
expect:
command: /opt/stack/postgres/postgresql/bin/psql --host=127.0.0.1 --port=7432 --username=wdchat -d WDCHAT -f /tmp/configuration/4_Update.WDCHAT.SysConfig.sql
responses:
Password for user postgres: 'BBRyAPNh6g4H9qte'
- name: 5 Create WDAUTHEN Table
expect:
command: /opt/stack/postgres/postgresql/bin/psql --host=127.0.0.1 --port=7432 --username=wdauthen -d WDAUTHEN -f /tmp/configuration/5_Create.WDAUTHEN.Table.sql
responses:
Password for user postgres: 'BBEcLWu5Cdzy3aeH'
- name: 6 Initial WDAUTHEN
expect:
command: /opt/stack/postgres/postgresql/bin/psql --host=127.0.0.1 --port=7432 --username=wdauthen -d WDAUTHEN -f /tmp/configuration/6_Initial.WDAUTHEN.sql
responses:
Password for user postgres: 'BBEcLWu5Cdzy3aeH'
\ No newline at end of file
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!