Initial commit

This commit is contained in:
Mario Fetka
2017-04-22 15:01:27 +02:00
parent 7ea26e619b
commit 05d4ad85da
26 changed files with 1084 additions and 0 deletions

13
debian/preinst vendored Normal file
View File

@@ -0,0 +1,13 @@
#!/bin/sh -e
# Skip if there's no previous version
if [ ! -z $2 ]; then
if dpkg --compare-versions $2 lt 0.4.1-4; then
update-rc.d -f megactl-makedev remove || true
rm -f /etc/init.d/megactl-makedev
fi
fi
#DEBHELPER#
exit 0