mirror of
https://github.com/joohoi/acme-dns.git
synced 2024-12-22 17:13:44 +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"
|