audiobookshelf/build/debian/DEBIAN/postrm

20 lines
425 B
Plaintext
Raw Normal View History

#!/bin/bash
set -e
set -o pipefail
FFMPEG_INSTALL_DIR="/usr/lib/audiobookshelf-ffmpeg/"
ABS_BINARY_PATH="/usr/share/audiobookshelf/audiobookshelf"
remove_ffmpeg() {
echo "Forcefully removing audiobookshelf-ffmpeg: $FFMPEG_INSTALL_DIR"
rm -rf "$FFMPEG_INSTALL_DIR"
}
remove_binary() {
echo "Removing audiobookshelf binary: $ABS_BINARY_PATH"
rm "$ABS_BINARY_PATH"
}
echo ">> Cleaning up"
2022-01-15 18:48:25 +01:00
remove_ffmpeg
remove_binary