summary refs log tree commit diff
path: root/uninstall.sh
blob: 23378cd0d3a69e6f81bbd643008d3470160c3d0c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
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