diff options
author | Felix Richter <github@syntax-fehler.de> | 2011-05-26 13:06:12 +0200 |
---|---|---|
committer | Felix Richter <github@syntax-fehler.de> | 2011-05-26 13:06:27 +0200 |
commit | b4ac01ac0462eec051e225c84355c2e38f0ecb68 (patch) | |
tree | 56b65bd8e60b19d72567a52590675009869e72f4 | |
parent | db7f9ee40d1a34e0ae9f1d5b67aa3a4090cd4dee (diff) |
fixed missing +x in startup script
-rw-r--r-- | .scripts/autostart/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.scripts/autostart/Makefile b/.scripts/autostart/Makefile index 58bfc0c5..7ca589e1 100644 --- a/.scripts/autostart/Makefile +++ b/.scripts/autostart/Makefile @@ -1,7 +1,8 @@ -INIT_FOLDER=/etc/rc.d +INIT_FOLDER=/etc/init.d .phony: all all: #TODO change the tinc file before writing cp tinc $(INIT_FOLDER)/tinc + chmod +x $(INIT_FOLDER)/tinc echo "retiolum" > /etc/tinc/nets.boot update-rc.d tinc defaults |