summary refs log tree commit diff
path: root/uninstall-scanner.sh
blob: 7441a07d3c9447a8e99476c02312ea2c1401b607 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
#!/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" "scanner-meta"
	sh "$SCRIPTS_DIR/post_install.sh" "$@" -u
fi