Skip to content

Instantly share code, notes, and snippets.

@galacticglum
Created December 13, 2016 20:58
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save galacticglum/9ce747983f5fcdd8670bd98d0e873e76 to your computer and use it in GitHub Desktop.
Save galacticglum/9ce747983f5fcdd8670bd98d0e873e76 to your computer and use it in GitHub Desktop.
Raspberry Pi - Power Button Tutorial! Completed Script
#!/bin/sh -e
#
# rc.local
#
# This script is executed at the end of each multiuser runlevel.
# Make sure that the script will "exit 0" on the success or any other
# value on error.
#
# In order to enable or disable this script just change the execution
# bits.
#
# By default this script does nothing.
# Print the IP address
_IP=$(hostname -I) || true
if [ "$_IP" ]; then
printf "My IP address is %s\n" "$_IP"
fi
sudo python /home/pi/Scripts/power.py &
exit 0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment