2021-11-28 16:01:29 -06:00
|
|
|
#!/bin/bash
|
2023-02-21 14:23:39 -06:00
|
|
|
# Note: postrm (script executed after uninstalling the package)
|
|
|
|
# set -e
|
|
|
|
|
2021-11-28 16:01:29 -06:00
|
|
|
|
|
|
|
if [ -f /bin/solarfm ]; then
|
|
|
|
rm /bin/solarfm
|
|
|
|
fi
|
|
|
|
|
2023-02-21 14:23:39 -06:00
|
|
|
if [ -f /opt/solarfm.zip ]; then
|
|
|
|
rm /opt/solarfm.zip
|
2021-11-28 16:01:29 -06:00
|
|
|
fi
|