confirm working on clara-bw as of fw 4.39.23027 / linux 4.9.77

This commit is contained in:
Thea Heinen
2024-08-25 11:01:01 -04:00
parent cb779cbcfd
commit 2509983817
13 changed files with 139 additions and 1 deletions

10
clara-bw/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