Debian postinst aufgenommen für Infos der Konfig-Migration

Puffer für PLC Prozess auf 0 gesetzt gegen hängenden Start von Popen
This commit is contained in:
2018-09-06 13:24:25 +02:00
parent dbba5efb8a
commit 5c19151ae0
2 changed files with 32 additions and 1 deletions

27
debian/postinst vendored Executable file
View File

@@ -0,0 +1,27 @@
#!/bin/bash
set -e
PATH=/bin:/sbin:/usr/bin:/usr/sbin
case "$1" in
configure)
cat <<-END
======= Important RevPiPyLoad post-installation note =======
If you upgrade from pre 0.6.5 Version,you have to migrate to the
new config file format!!!
/etc/revpipyload/revpipyload.conf
READ:
DE: https://revpimodio.org/revpipyplc-auf-065/
EN: https://revpimodio.org/en/revpipyplc-to-064/
END
;;
esac
#DEBHELPER#
exit 0