=== modified file 'debian/changelog'
--- debian/changelog	2011-08-02 17:45:09 +0000
+++ debian/changelog	2011-08-16 10:15:09 +0000
@@ -18,7 +18,11 @@
   * Added many missing manpages.
   * Added default container-server.conf & object-server.conf files.
 
- -- Soren Hansen <soren@ubuntu.com>  Mon, 11 Jul 2011 17:49:35 +0200
+  [ James Page ]
+  * Added debian/python-swift.postrm:  Remove swift user when purging 
+    package (LP: #825670).
+
+ -- James Page <james.page@ubuntu.com>  Tue, 16 Aug 2011 10:33:00 +0100
 
 swift (1.4.2-0ubuntu1) oneiric; urgency=low
 

=== added file 'debian/python-swift.postrm'
--- debian/python-swift.postrm	1970-01-01 00:00:00 +0000
+++ debian/python-swift.postrm	2011-08-16 10:15:09 +0000
@@ -0,0 +1,21 @@
+#!/bin/sh
+
+set -e
+
+case "$1" in
+    purge)
+        # Remove swift user if possible
+        userdel swift || true
+    ;;
+    remove|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear)
+    ;;
+    *)
+        echo "postrm called with unknown argument \`$1'" >&2
+        exit 1
+    ;;
+esac
+
+#DEBHELPER#
+
+exit 0
+

