blob: e00a54853165447e3a6d05adfd7682368147510e (
plain)
1
2
3
4
5
6
7
8
9
|
post_install() {
echo "install finished. Edit /etc/webapps/outline/config.env to config."
echo "Be sure to include all of the values in the Required section and at least one authentication provider from the Optional section."
echo "After config, run outline-db-create to init database; run outline-db-migrate to migrate database to newer version."
}
post_upgrade() {
echo "run outline-db-migrate to migrate database to newer version"
}
|