First commit

This commit is contained in:
Cyril 2024-03-10 21:45:05 +01:00
commit 7693c29676
102 changed files with 11831 additions and 0 deletions

7
files/fixes/systemctl Executable file
View file

@ -0,0 +1,7 @@
#!/bin/sh
if [ "$1" == "reboot" ]; then
/sbin/reboot
elif [ "$1" == "poweroff" ]; then
/sbin/poweroff
fi