blob: 2cf8e1d25c48481838f5fa81e6c16e5c1173ecb7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
post_install() {
cat << EOF
==> Generate the config.yaml, including secrets:
# mas-cli config generate /etc/matrix-authentication-service/config.yaml
==> update the configuration as per the documentation
# https://matrix-org.github.io/matrix-authentication-service/index.html
==> sync the config changes
# mas-cli config sync --prune
==> start and enable the service
# systemctl enable --now matrix-authentication-service
EOF
}
|