20 lines
452 B
Bash
Executable File
20 lines
452 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/
|
|
cp ssl.conf ../ssl/
|