29 lines
847 B
Bash
Executable File
29 lines
847 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Migrate a repository to WHEEZY
|
|
|
|
# DON'T COMMIT ANYTHING AFTER launching this
|
|
# reset your subversion repos back to the serverside one!
|
|
|
|
cd `dirname $0`
|
|
|
|
pushd ../debian
|
|
patch <../jessie/control.diff
|
|
patch <../jessie/changelog.diff
|
|
popd
|
|
|
|
cp vhost.conf ../etc/alternc/templates/apache2/
|
|
cp bureau.conf ../etc/alternc/templates/alternc/
|
|
cp alternc.install ../install/
|
|
cp apache2.conf ../etc/alternc/templates/alternc/
|
|
# alternc-roundcube package :
|
|
cp roundcube.config.inc.php ../roundcube/templates/roundcube/config.inc.php
|
|
rm ../roundcube/templates/roundcube/main.inc.php
|
|
cp roundcube.password.config.inc.php ../roundcube/templates/roundcube/plugins/password/config.inc.php
|
|
cp roundcube-install ../roundcube/
|
|
cp alternc-roundcube.postinst ../debian/
|
|
|
|
# alternc-ssl package :
|
|
cp ssl.conf ../ssl/
|
|
cp alternc-ssl.install.php ../ssl/
|