From a91d41375fc87c958f0b4b2ec09d5bfa2bab9414 Mon Sep 17 00:00:00 2001 From: Starfall Date: Mon, 8 Jan 2024 09:40:24 -0600 Subject: Initial commit --- uninstall.sh | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100755 uninstall.sh (limited to 'uninstall.sh') diff --git a/uninstall.sh b/uninstall.sh new file mode 100755 index 0000000..23378cd --- /dev/null +++ b/uninstall.sh @@ -0,0 +1,13 @@ +#!/bin/sh + +SCRIPTS_DIR=$(dirname "$0")/noarch + +# load 'scripting' run-time support utility functions +. "${SCRIPTS_DIR}/scripting_utils" +script_log_init $(basename "$0" ".sh") + +if sh "$SCRIPTS_DIR/pre_install.sh" "$@" -u ; then + sh "$SCRIPTS_DIR/package_uninstall.sh" "printer-meta" + sh "$SCRIPTS_DIR/package_uninstall.sh" "scanner-meta" + sh "$SCRIPTS_DIR/post_install.sh" "$@" -u +fi -- cgit