mirror of
https://dev.iopsys.eu/feed/iopsys.git
synced 2026-02-22 04:12:28 +01:00
9 lines
189 B
Bash
Executable file
9 lines
189 B
Bash
Executable file
#!/bin/sh
|
|
|
|
# This deletes the userinterface json plugin if exists in case of upgrade
|
|
if [ -f "/etc/bbfdm/json/UserInterface.json" ]; then
|
|
rm /etc/bbfdm/json/UserInterface.json
|
|
fi
|
|
|
|
exit 0
|
|
|