#!/bin/bash # analog of %preun RPM scriptlet # For details see: # 1. https://www.debian.org/doc/debian-policy/ch-maintainerscripts.html#summary-of-ways-maintainer-scripts-are-called # 2. https://www.debian.org/doc/debian-policy/ap-flowcharts.html # Arguments in short: # "$1" == "upgrade" - DEB package manager will upgrade package # "$1" == "remove" - DEB package manager will remove package # "$1" == "failed-upgrade" - previous prerm upgrade was finished with error # "$2" == "package_version" - DEB package new version (only for upgrade/failed-upgrade command) # "cloudlinux-linksafe DEBIAN PRERM STARTED" solo_marker='/etc/cloudlinux-edition-solo' container_marker='/etc/cloudlinux-container' /usr/share/cloudlinux-linksafe/scriptlets/rpm_preun.sh "$1" "$solo_marker" "$container_marker" # "cloudlinux-linksafe DEBIAN PRERM FINISHED" exit 0