Skip to content

Instantly share code, notes, and snippets.

@Geofferey
Last active May 6, 2025 20:25
Show Gist options
  • Save Geofferey/e23aa99f58d83dd3ab7dfd5143117a0f to your computer and use it in GitHub Desktop.
Save Geofferey/e23aa99f58d83dd3ab7dfd5143117a0f to your computer and use it in GitHub Desktop.
inseego_m2000-init-rc_local.sh
#!/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