The install.sh script needs to be updated to install situation.sh to /lib/situation.sh
I'd also make it create reboot, poweroff and halt as:
Elwing:/usrs/root# cat /bin/reboot
#!/bin/sh
kill -INT 1
Elwing:/usrs/root# cat /bin/poweroff
#!/bin/sh
kill -TERM 1
Elwing:/usrs/root# cat /bin/halt
#!/bin/sh
kill -USR1 1
Elwing:/usrs/root#
NOTE: I updated the files from the webui because I'm lazy, the permissions are thus not set as executable
The install.sh script needs to be updated to install situation.sh to /lib/situation.sh
I'd also make it create `reboot`, `poweroff` and `halt` as:
```
Elwing:/usrs/root# cat /bin/reboot
#!/bin/sh
kill -INT 1
Elwing:/usrs/root# cat /bin/poweroff
#!/bin/sh
kill -TERM 1
Elwing:/usrs/root# cat /bin/halt
#!/bin/sh
kill -USR1 1
Elwing:/usrs/root#
```
NOTE: I updated the files from the webui because I'm lazy, the permissions are thus not set as executable