Skip to content

Instantly share code, notes, and snippets.

@Geofferey
Last active May 6, 2025 20:56
Show Gist options
  • Save Geofferey/6ee592e6225627a8109bfc25aa203fd9 to your computer and use it in GitHub Desktop.
Save Geofferey/6ee592e6225627a8109bfc25aa203fd9 to your computer and use it in GitHub Desktop.
inseego-m2000_rc.local
#!/bin/sh
PATH=/bin:/sbin:/usr/bin:/usr/sbin:/opt/nvtl/bin:/opt/nvtl/data/branding/bin
# Place in /etc/rc.local
for script in /etc/rc.local.d/*; do
if [ -x $script ]; then
/bin/sh $script >> /dev/null 2>&1 &
fi
done
exit 0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment