mirror of
https://github.com/acme-dns/acme-dns.git
synced 2026-02-22 09:35:35 -07:00
5 lines
194 B
Bash
Executable File
5 lines
194 B
Bash
Executable File
#!/bin/sh
|
|
sudo -u postgres createdb acmedns
|
|
sudo -u postgres psql -c "CREATE USER acmedns WITH PASSWORD 'acmedns'"
|
|
sudo -u postgres psql -c "GRANT ALL PRIVILEGES ON DATABASE acmedns TO acmedns"
|