pull/207/merge
Jeffrey Paul 2018-10-15 08:44:05 +00:00 committed by GitHub
commit dc15f80001
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 0 deletions

View File

@ -17,4 +17,9 @@ if [ "$_IP" ]; then
printf "My IP address is %s\n" "$_IP"
fi
# run an rc.local.txt from the boot partition, if one exists.
if [ -e /boot/rc.local.txt ]; then
. /boot/rc.local.txt
fi
exit 0