mirror of
https://dev.lirent.ru/Vatrog/vm-automation-signaling.git
synced 2026-06-25 20:36:36 +03:00
0289817821
- the vmsig package no longer ships the gpu lib; it is a Sensor lib for the control, not the daemon - vgpu-perception gets SOVERSION; runtime (libvgpu-perception0) and dev (-dev) packages, like the vmie split - per-component install + a 3-package make deb; fix a stale comment (the windows producer is in-tree)
11 lines
134 B
Bash
Executable File
11 lines
134 B
Bash
Executable File
#!/bin/sh
|
|
set -e
|
|
case "$1" in
|
|
configure)
|
|
ldconfig || true
|
|
;;
|
|
abort-upgrade|abort-remove|abort-deconfigure)
|
|
;;
|
|
esac
|
|
exit 0
|