From 73b5bf3387f5feba69872f04ea719aa1f669b588 Mon Sep 17 00:00:00 2001 From: agreenbhm Date: Thu, 4 May 2017 15:19:18 -0400 Subject: [PATCH 1/2] Fixed service setup for udhcpc Line 577 of the README (build instructions) left off the "run" file from the vi target (previously it is targeting the folder). Added "/run" to the line to correct it. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 4eb7a37..26126b8 100644 --- a/README.md +++ b/README.md @@ -574,7 +574,7 @@ runit documentation says about making dependencies. The very last thing we will do is provide our system with a network connection. ```bash $ mkdir -p /etc/init.d/udhcpc -$ vi /etc/init.d/udhcpc +$ vi /etc/init.d/udhcpc/run $ cat /etc/init.d/udhcpc #!/bin/sh exec udhcpc -f -S From 497b254ee93765d1ffea222fc4f78662cbab8125 Mon Sep 17 00:00:00 2001 From: Michiel Derhaeg Date: Thu, 4 May 2017 21:26:41 +0200 Subject: [PATCH 2/2] add /run to the next line as well --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 26126b8..7bb208a 100644 --- a/README.md +++ b/README.md @@ -575,7 +575,7 @@ The very last thing we will do is provide our system with a network connection. ```bash $ mkdir -p /etc/init.d/udhcpc $ vi /etc/init.d/udhcpc/run -$ cat /etc/init.d/udhcpc +$ cat /etc/init.d/udhcpc/run #!/bin/sh exec udhcpc -f -S $ chmod +x /etc/init.d/udhcpc/run