summary refs log tree commit diff
path: root/uninstall-printer.sh
blob: 2fea2a705259ff295547872ec3681ae2495ec0ad (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" "printer-meta"
	sh "$SCRIPTS_DIR/post_install.sh" "$@" -u
fi