Files
FastDeploy/cpack/debian_prerm.in
Wang Xinyu 3e5c219ab3 [Other] Generate Debian package and RPM package (#1043)
* cpack deb

* cpack prerm script

* optim postinst script

* generate rpm package

* add build fd package doc

* update build fd package doc
2023-01-10 10:26:58 +08:00

13 lines
327 B
Bash

#!/bin/bash
case "$1" in
remove|deconfigure)
rm -f /etc/ld.so.conf.d/@CPACK_PACKAGE_NAME@.conf
rm @CMAKE_INSTALL_PREFIX@/@CPACK_PACKAGE_NAME@.conf
rm -rf @CMAKE_INSTALL_PREFIX@/third_libs/install/tensorrt/lib/
ldconfig
echo "FastDeploy is going to be uninstalled."
;;
esac