10 lines
133 B
Bash
10 lines
133 B
Bash
#!/bin/bash
|
|
|
|
chmod 0400 /cert.pem
|
|
chown postgres:postgres /cert.pem
|
|
|
|
chmod 0400 /key.pem
|
|
chown postgres:postgres /key.pem
|
|
|
|
exec "$@"
|