I'm trying to add a 'postinst' script to my debian package to clean up something a previous version may have left behind.
I've simply created a 'postinst' file in the debian/ directory, but the file is not present in the .deb file.
The permissions:
-rwxrwxr-x 1 kp kp 354 Sep 16 20:00 postinst*
The content:
#!/bin/sh
set -e
set -x
...