Initial import

This commit is contained in:
Pim van Pelt
2025-07-13 23:39:04 +02:00
commit e3264e6489
10 changed files with 455 additions and 0 deletions

23
debian/postinst vendored Executable file
View File

@@ -0,0 +1,23 @@
#!/bin/bash
set -e
case "$1" in
configure)
# Create the log directory for bitcron
mkdir -p /var/log/bitcron
chmod 755 /var/log/bitcron
;;
abort-upgrade|abort-remove|abort-deconfigure)
;;
*)
echo "postinst called with unknown argument \`$1'" >&2
exit 1
;;
esac
#DEBHELPER#
exit 0