12 lines
187 B
Bash
Executable File
12 lines
187 B
Bash
Executable File
#!/bin/bash
|
|
#postrm (script executed after uninstalling the package)
|
|
#set -e
|
|
|
|
if [ -f /bin/solarfm ]; then
|
|
rm /bin/solarfm
|
|
fi
|
|
|
|
if [ -d /opt/SolarFM ]; then
|
|
rm -rf /opt/SolarFM
|
|
fi
|