File tree Expand file tree Collapse file tree 1 file changed +7
-9
lines changed Expand file tree Collapse file tree 1 file changed +7
-9
lines changed Original file line number Diff line number Diff line change 1- #! /usr/ bin/env bash
2- # MISE description="Clean install of EQL"
1+ #! /bin/bash
2+ # MISE description="Clean install of EQL"
33
4- #! /bin/bash
4+ set -euxo pipefail
55
6- set -euxo pipefail
6+ connection_url=postgresql:// ${CS_DATABASE__USERNAME :- $USER } :@localhost: $CS_DATABASE__PORT / $CS_DATABASE__NAME
77
8- connection_url=postgresql://${CS_DATABASE__USERNAME:- $USER } :@localhost:$CS_DATABASE__PORT /$CS_DATABASE__NAME
8+ # Uninstall
9+ PGPASSWORD=$CS_DATABASE__PASSWORD psql $connection_url -f release/cipherstash-encrypt-uninstall.sql
910
10- # Uninstall
11- PGPASSWORD=$CS_DATABASE__PASSWORD psql $connection_url -f release/cipherstash-encrypt-uninstall.sql
12-
13- PGPASSWORD=$CS_DATABASE__PASSWORD psql $connection_url -f release/cipherstash-encrypt.sql
11+ PGPASSWORD=$CS_DATABASE__PASSWORD psql $connection_url -f release/cipherstash-encrypt.sql
You can’t perform that action at this time.
0 commit comments