initial commit

This commit is contained in:
videah
2023-08-29 05:57:00 +01:00
commit a09d07346d
14 changed files with 177 additions and 0 deletions

10
libra2/scripts/boot.sh Executable file
View File

@@ -0,0 +1,10 @@
#!/bin/sh
# Start by renicing ourselves to a neutral value, to avoid any mishap...
renice 0 -p $$
# Launch in the background, with a clean env, after a setsid call to make very very sure udev won't kill us ;).
env -i -- setsid /usr/local/tailscale/on-boot.sh &
# Done :)
exit 0