~ubuntu-branches/ubuntu/maverick/ampache/maverick

« back to all changes in this revision

Viewing changes to debian/ampache.config

  • Committer: Bazaar Package Importer
  • Author(s): Charlie Smotherman
  • Date: 2010-05-01 14:12:45 UTC
  • Revision ID: james.westby@ubuntu.com-20100501141245-fvwdhawqj63vq9pj
Tags: 3.5.4-2
 * Added support for lighttpd servers.  What this means is that the default
 behavior is for apache2 to be installed on new installs.  However if
 lighttpd is installed and configured correctly the maintainer scripts 
 should pickup on this and install ampache into the proper locations, 
 create the need sym links, and enable the needed lighttpd modules.
 Closes: #549009
 * Made package depend on nusoap. Closes: #579829
 * debian/control:
   - Recommends, package should recommend the mysql-server meta-package so 
   the default mysql-server is installed.  This will eleminate the need for 
   additional uploads to increase mysql-server version number.
   - added additional depends for lighttpd support.
   - moved apache2 | lighttpd to the Recommends field.
   - added dependency on libnusoap-php
 * debian/ampache.postrm: 
   - added purge statement to webserver restart so webserver reloads on 
   remove and purge.
   - added conditional removal statements to ampache.postrm so all user
   modified config files are removed on purge.
   - added lighttpd support
 * debian/ampache.postinst:
   - correted incorrect ampache.conf symlink creation. (LP: #533989)
   - added lighttpd support
 * debian/ampache.preinst:
   - added ampache.preinst to correct sym link naming mismatch on upgrades.
   (LP: #558697)
   - added ampache.cfg.php backup to ampache.preinst, this way we make a 
   backup copy of ampache.cfg.php before upgrade begins. 
 * debian/postinst:
   - removed ampache.cfg.php backup and migration, this was only need until 
   Ubuntu Hardy reached EOL.
   - added lighttpd support.
 * debian/ampache.templates:
   - added webserver types question for lighttpd support.
   - combined webserver configuration and webserver restart into one
   question (webserver_restart).
   - reworded webserver_restart to be more generic in scope.
 * debian/ampache.config:
   - remove webserver-configure bits, this question is no longer needed.
 * debian/amp-lighty.conf:
   - added to create the lighttpd alias.
 * debian/ampache.install:
   - added amp-lighty.conf to be installed into /etc/ampache.
 * debian/conf:
   - added the directory debian/conf and moved debian/ampache.conf and 
   debian/lighttpd_ampache.conf into it.
 * debian/README.Debian:
   - updated outdated links.  Made document 80 characters wide.
 * debian/rules:
   - added -Xnusoap to remove upstream copy of nusoap.
 * debian/links:
   - added nusoap sym links.
      

Show diffs side-by-side

added added

removed removed

Lines of Context:
9
9
. /usr/share/debconf/confmodule
10
10
db_version 2.0 || [ 0 -lt 30 ]
11
11
 
12
 
  db_set ampache/ampache/configure-webserver || true
13
 
  db_input medium ampache/configure-webserver || true
14
 
  db_go || true
15
 
 
16
 
  db_set ampache/restart-webserver || true
17
 
  db_subst ampache/restart-webserver webserver "$webserver"
18
 
  db_input critical ampache/restart-webserver || true
19
 
  db_go || true
20
 
 
 
12
db_set ampache/webserver_type || true
 
13
db_input critical ampache/webserver_type || true
 
14
db_go || true
 
15
 
 
16
db_set ampache/restart_webserver || true
 
17
db_input critical ampache/restart_webserver || true
 
18
db_go || true