mirror of
https://github.com/joohoi/acme-dns.git
synced 2024-12-22 22:13:55 +07:00
5 lines
194 B
Bash
5 lines
194 B
Bash
|
#!/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"
|