summarylogtreecommitdiffstats
path: root/ueyed.install
diff options
context:
space:
mode:
Diffstat (limited to 'ueyed.install')
-rw-r--r--ueyed.install13
1 files changed, 13 insertions, 0 deletions
diff --git a/ueyed.install b/ueyed.install
index c81590da9088..cffcd0a8f145 100644
--- a/ueyed.install
+++ b/ueyed.install
@@ -1,3 +1,16 @@
+_config_message() {
+ echo "The ethernet daemon must be configured using /etc/ueye/ueyeethd.conf"
+ echo "You also need to make sure /usr/bin/ueyeethdnotify or /usr/bin/ueyenotify is called when an interface comes up or down."
+}
+
post_install() {
useradd --system -M --shell /bin/false ueyed
+ _config_message
+}
+
+post_upgrade() {
+ old_version=$2
+ diff="$(vercmp $old_version '4.72-2')"
+ (( diff < 0 )) && _config_message
+ true
}