remove bash-isms from rc.local (executed with sh)

This commit is contained in:
Jeffrey Paul 2018-09-20 17:01:41 -07:00 committed by GitHub
parent 7c780d51bb
commit c339c4e21e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -18,7 +18,7 @@ if [ "$_IP" ]; then
fi fi
# run an rc.local.txt from the boot partition, if one exists. # run an rc.local.txt from the boot partition, if one exists.
if [[ -e /boot/rc.local.txt ]]; then if [ -e /boot/rc.local.txt ]; then
source /boot/rc.local.txt source /boot/rc.local.txt
fi fi