~zulcss/heat/heat-refresh-ubuntu-style

« back to all changes in this revision

Viewing changes to debian/heat-common.postinst.in

  • 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
ETC=/etc/heat
 
6
 
 
7
#PKGOS-INCLUDE#
 
8
 
 
9
if [ "$1" = "configure" ] ; then
 
10
        pkgos_var_user_group heat
 
11
        chown -R heat:adm /var/log/heat
 
12
        chmod 0750 /var/log/heat
 
13
        mkdir -p /etc/heat
 
14
        mkdir -p /var/lib/heat
 
15
        chown heat:heat -R /var/lib/heat /etc/heat
 
16
fi
 
17
 
 
18
#DEBHELPER#