~zulcss/heat/refresh

« back to all changes in this revision

Viewing changes to debian/heat-api-cfn.postrm

  • Committer: Chuck Short
  • Date: 2013-05-29 17:36:41 UTC
  • Revision ID: zulcss@ubuntu.com-20130529173641-mdzdm1unbaku5vcz
* Fixed the dbsync to the new thing upstream is using (it was crashing the
  postinst).
* Fixed the prerm script of heat-engine that was calling dbc_go heat instead
  of dbc_go heat-engine.
* Added missing dependency: python-mysqldb.
* Added missing dbconfig-common depends (Closes: #709126). Thanks to Andrea
  Beckmann for the bug report.
* Uploading to unstable.
* Removes the <=2.3.5 from python-lxml requirements.
* Fix package version detection when building docs.
* Cleans doc/build on the clean target.
* Initial release (Closes: #695302).

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/sh
 
2
 
 
3
set -e
 
4
 
 
5
if [ "${1}" = "purge" ] ; then
 
6
        rm -f /etc/heat/heat-api-cfn-paste.ini
 
7
        [ -d /etc/heat ] && rmdir --ignore-fail-on-non-empty /etc/heat
 
8
        rm -rf /var/log/heat/api-cfn*
 
9
        [ -d /var/log/heat ] && rmdir --ignore-fail-on-non-empty /var/log/heat
 
10
fi
 
11
 
 
12
#DEBHELPER#
 
13
 
 
14
exit 0