Alternc  latest
Alternc logiel libre pour l'hébergement
patch.sh
Go to the documentation of this file.
1 #!/bin/bash
2 
3 # Migrate a repository to WHEEZY
4 
5 # DON'T COMMIT ANYTHING AFTER launching this
6 # reset your subversion repos back to the serverside one!
7 
8 cd `dirname $0`
9 
10 pushd ../debian
11 patch <../wheezy/control.diff
12 patch <../wheezy/changelog.diff
13 popd
14 pushd ../install
15 patch <../wheezy/alternc.install.diff
16 popd
17 
18 cp -vf alternc-dict-quota.conf alternc-sql.conf ../etc/alternc/templates/dovecot/
19 mkdir -p ../etc/alternc/templates/dovecot/conf.d/
20 cp -vf 95_alternc.conf ../etc/alternc/templates/dovecot/conf.d/
21 
22 pushd ../etc/alternc/templates/dovecot
23 rm -vf dovecot.conf dovecot-dict-quota.conf dovecot-sql.conf
24 popd
25 
26 
27