Moving to GitHub.
[platal.git] / upgrade / 0.9.3 / update.sh
CommitLineData
0337d704 1#!/bin/bash
2
3. ../inc/pervasive.sh
4
5mailman_stop
6mailman_templates
7mailman_start
8
9
10###########################################################
11for sql in *.sql
12do
13 echo -n $sql
14 $MYSQL x4dat < $sql &>/dev/null || echo -n " ERROR"
15 echo .
16done
17
18###########################################################
19
20echo "BE CAREFUL :
21
22* scripts/ is now essentially in bin/
23 --> have to modify crons
24 --> have to modify xml-rpc path in the daemontools
25
26* carva redirects are still in scripts/ but their path and name have changed.
27 --> the error page is scripts/webredirect_error.php
28 --> the redirect page is scripts/webredirect.php
8ac008e9 29
0337d704 30* mailman : update the conf to use the mhonarc archiver
31"