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