Files
revpipyload/debian/postinst
NaruX 5c19151ae0 Debian postinst aufgenommen für Infos der Konfig-Migration
Puffer für PLC Prozess auf 0 gesetzt gegen hängenden Start von Popen
2018-09-06 13:24:25 +02:00

28 lines
491 B
Bash
Executable File

#!/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