~ubuntu-branches/debian/sid/wordpress/sid

« back to all changes in this revision

Viewing changes to debian/wordpress.prerm

  • Committer: Package Import Robot
  • Author(s): Raphaël Hertzog
  • Date: 2012-06-26 10:47:25 UTC
  • Revision ID: package-import@ubuntu.com-20120626104725-3psv77eufyxxn0k7
Tags: 3.4+dfsg-3
* [f7a1c09] Drop useless postrm.
* [d92219b] Add a prerm script calling wp-setup --purge-wp-content on
  remove. Closes: #678842
* [2fbf903] Allow wp-setup to symlink files as well as directories.
* [cef928f] Let wp-setup also manage
  /var/lib/wordpress/wp-content/languages/.
* [ac86408] Densify output of wp-setup.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/sh
 
2
 
 
3
set -e
 
4
 
 
5
if [ "$1" = "remove" ]; then
 
6
    wp-setup --purge-wp-content
 
7
fi
 
8
 
 
9
#DEBHELPER#