diff options
Diffstat (limited to 'pkg/deb/debian/unit.postinst')
-rwxr-xr-x | pkg/deb/debian/unit.postinst | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/pkg/deb/debian/unit.postinst b/pkg/deb/debian/unit.postinst new file mode 100755 index 00000000..76375a2b --- /dev/null +++ b/pkg/deb/debian/unit.postinst @@ -0,0 +1,11 @@ +#!/bin/sh + +set -e + +if [ "$1" != "configure" ]; then + exit 0 +fi + +#DEBHELPER# + +exit 0 |