mirror of
https://github.com/outbackdingo/firezone.git
synced 2026-03-22 07:41:51 +00:00
13 lines
163 B
Bash
Executable File
13 lines
163 B
Bash
Executable File
#!/bin/bash
|
|
set -xe
|
|
|
|
yum install -y \
|
|
openssl \
|
|
net-tools \
|
|
postgresql-server \
|
|
systemd \
|
|
iptables
|
|
|
|
postgresql-setup initdb
|
|
systemctl restart postgresql
|