blob: 2fa92b71618b2ce4393a278349b0ee4e668fb4db (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
post_install() {
echo "Installation successful, please ensure to read the ArchWiki"
echo "page for the setup guide, see the link below:"
echo "https://wiki.archlinux.org/title/Movim"
}
post_upgrade() {
echo ""
echo "Migrate database:"
echo "cd /usr/share/webapps/movim/; sudo -u movim php /usr/share/webapps/movim/vendor/bin/phinx migrate"
echo ""
}
|