summarylogtreecommitdiffstats
path: root/muse-sounds-manager.install
blob: 4e3d4ac39398b42fe24ac3db077a403f33864e3e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
pre_remove() {
	# Kill the Muse Hub Client application
    if pgrep -f Muse.Client.Linux; then killall Muse.Client.Linux; fi
}

post_remove() {
	# Post Uninstall (Delete files)
    if [ $1 = "remove" ]; then
        rm -rf /tmp/muse-hub
        rm -rf /tmp/muse-sounds-manager
    fi
}