17 lines
606 B
Bash
Executable File
17 lines
606 B
Bash
Executable File
#!/bin/bash
|
|
# ------------------------- CONFIGURATION starts here -------------------------
|
|
# location of the HC scripts
|
|
HC_DIR="/opt/hc"
|
|
# location of the HC configuration files
|
|
HC_ETC_DIR="/etc/opt/hc"
|
|
# location of the HC log/state files
|
|
HC_VAR_DIR="/var/opt/hc"
|
|
# ------------------------- CONFIGURATION ends here ---------------------------
|
|
echo "INFO: starting post-uninstall script ..."
|
|
if [[ -d ${HC_VAR_DIR} ]]
|
|
then
|
|
rm -rf ${HC_VAR_DIR}/state/temporary 2>/dev/null
|
|
(( $? == 0 )) || echo "WARN: failed to remove ${HC_VAR_DIR}/state/temporary"
|
|
fi
|
|
echo "INFO: finished post-uninstall script"
|