From 26ad23f01ef66d017ce46b72c13b17661e7adfc9 Mon Sep 17 00:00:00 2001
From: Dan Schaper <dschaper@users.noreply.github.com>
Date: Wed, 1 Feb 2017 18:33:42 -0800
Subject: [PATCH] Remove comment leaders from DHCPCD interface

We need to set the interface in DHCPCD, comments were inadvertently added a while ago.
---
 automated install/basic-install.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/automated install/basic-install.sh b/automated install/basic-install.sh
index 94f26be9..20934618 100755
--- a/automated install/basic-install.sh	
+++ b/automated install/basic-install.sh	
@@ -361,7 +361,7 @@ It is also possible to use a DHCP reservation, but if you are going to do that,
 
 setDHCPCD() {
   # Append these lines to dhcpcd.conf to enable a static IP
-  echo "## interface ${PIHOLE_INTERFACE}
+  echo "interface ${PIHOLE_INTERFACE}
   static ip_address=${IPV4_ADDRESS}
   static routers=${IPv4gw}
   static domain_name_servers=${IPv4gw}" | tee -a /etc/dhcpcd.conf >/dev/null