Last active
May 6, 2025 20:56
-
-
Save Geofferey/6ee592e6225627a8109bfc25aa203fd9 to your computer and use it in GitHub Desktop.
inseego-m2000_rc.local
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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