summarylogtreecommitdiffstats
path: root/listmonk.install
diff options
context:
space:
mode:
authorCaleb Maclennan2021-05-05 13:39:22 +0300
committerCaleb Maclennan2021-05-05 13:42:09 +0300
commitc5e4fedd924a39479fb3b938dd37e2747d775b9a (patch)
treecbc8b4507ac5741aaefa534fde88b9d6da95bc6b /listmonk.install
parent03e79d4612e8982dba85bdf2fbd54dc77ea77cbe (diff)
downloadaur-c5e4fedd924a39479fb3b938dd37e2747d775b9a.tar.gz
Use static example config, add SQL setup instructions
Diffstat (limited to 'listmonk.install')
-rw-r--r--listmonk.install13
1 files changed, 10 insertions, 3 deletions
diff --git a/listmonk.install b/listmonk.install
index c3c6e89ad28c..38210b548899 100644
--- a/listmonk.install
+++ b/listmonk.install
@@ -6,9 +6,16 @@ post_install() {
\$ listmonk --new-config
\$ sudo mv config.toml /etc/listmonk/
- To setup database, run
+ Setup credentials and a database (substiting your own password!):
- \$ listmonk --config /etc/listmonk/config.toml --install
+ \$ sudo -u postgres psql
+ postgres=# CREATE USER listmonk WITH PASSWORD 'TKByjizucIoex3mA';
+ postgres=# CREATE DATABASE listmonk;
+ postgres=# GRANT ALL PRIVILEGES ON DATABASE listmonk TO listmonk;
+
+ Edit with PostgreSQL database credentials, then to setup database, run:
+
+ \$ sudo -u listmonk listmonk --config /etc/listmonk/config.toml --install
EOF
}
@@ -16,7 +23,7 @@ post_upgrade() {
cat <<- EOF
To update database, run
- \$ listmonk --config /etc/listmonk/config.toml --upgrade
+ \$ sudo -u listmonk listmonk --config /etc/listmonk/config.toml --upgrade
EOF
}