Initial commit

This commit is contained in:
kantorkel 2022-10-10 16:30:43 +02:00 committed by Matthias Marx
commit cb4d73731f
17 changed files with 1050 additions and 0 deletions

7
files/usr/bin/sim_switch Executable file
View file

@ -0,0 +1,7 @@
if [ "$1" = "on" ];then
echo "on" > /tmp/sim_change_switch
elif [ "$1" = "off" ];then
echo "off" > /tmp/sim_change_switch
else
echo "off" > /tmp/sim_change_switch
fi