Last active
May 6, 2025 20:25
-
-
Save Geofferey/e23aa99f58d83dd3ab7dfd5143117a0f to your computer and use it in GitHub Desktop.
inseego_m2000-init-rc_local.sh
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 | |
# INIT script for starting rc.local > rc.local.d | |
# Placed in /etc/init.d/rc_local.sh | |
#set -x | |
case "$1" in | |
start) | |
echo -n "Starting rc.local: " | |
/bin/sh /etc/rc.local | |
echo "done" | |
;; | |
*) | |
echo "Usage $0 { start } " >&2 | |
exit 1 | |
;; | |
esac | |
exit 0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment