Endpoint Protection

 View Only

SEP Ubuntu install scripts

  • 1.  SEP Ubuntu install scripts

    Posted Mar 31, 2020 07:16 PM
    The pre- and post- install scripts in the Debian packages cause the SEP install script for Linux to fail in certain environments.  This is caused by the use of ~/ in the preinst, postinst, prerm, and postrm scripts of the .deb packages.

    Please replace ~/ with $HOME/ in the scripts and rebuild the packages.  This will fix the issue where install.sh -i fails at InstallDeb() because ~/ is not expanded to the user's home directory.

    A simple sed -i 's/\~\//\$HOME\//g' on the install scripts will fix them.