summaryrefslogtreecommitdiffstats
path: root/ship/src/tor
diff options
context:
space:
mode:
Diffstat (limited to 'ship/src/tor')
-rwxr-xr-xship/src/tor8
1 files changed, 5 insertions, 3 deletions
diff --git a/ship/src/tor b/ship/src/tor
index fa0c929f..df904444 100755
--- a/ship/src/tor
+++ b/ship/src/tor
@@ -1,7 +1,7 @@
#!/bin/sh
#@include core
-
-
+#@include network
+#@include punani
# can be set via env:
# torrc - path to torrc (default: /etc/tor/torrc )
# hidden_service_dir - path to hidden service (default: /var/lib/tor/hidden_service/ )
@@ -9,7 +9,9 @@
torrc=${torrc:-/etc/tor/torrc}
hidden_service_dir=${hidden_service_dir:-/var/lib/tor/hidden_service/}
-test -w "$torrc" || ( error "$torrc is not writable!"; exit 1 )
+punani install tor
+
+test -w "$torrc" || ( error "$torrc is not writable!"; exit 1 ) || exit 1
if ! grep -q '^HiddenService' "$torrc" ;then
info "adding hidden service to $torrc"
cat >> "$torrc" << EOF