Comment 2 for bug 276945

Revision history for this message
James Westby (james-w) wrote :

Hi Charlie,

Thanks for working on this. I have a few questions about your patch.

- #Stop and purge debconf.
- db_stop || true
- db_purge || true
-

why don't we want to do that any more?

+ if [ -d /usr/share/ampache ]; then
+ rm -rf /usr/share/ampache
+ rm -f /etc/apache2/conf.d/ampache
+ fi

is /etc/apache2/conf.d/ampache a conffile?

+ mkdir /usr/share/ampache/www/modules/prototype
+ if [ ! -h /usr/share/ampache/www/modules/prototype ]; then
+ ln -s /usr/share/javascript/prototype/prototype.js /usr/share/ampache/www/modules/prototype/
+ fi

why doesn't this work if the link is in the package? I think you tried to explain
this along with the patch, but I didn't get it I'm afraid.

+ cd $BIN
+ php ./migrate_config.inc

can that not be called with the full pathname, instead of using "cd"?

Thanks,

James