Files
kobo-tailscale/libra-color/scripts/boot.sh
2024-07-10 05:46:01 +02:00

10 lines
280 B
Bash
Executable File

#!/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