File: tor-generator

package info (click to toggle)
tor 0.4.8.22-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 55,764 kB
  • sloc: ansic: 315,652; sh: 7,415; python: 1,829; makefile: 620; perl: 249; pascal: 141
file content (31 lines) | stat: -rw-r--r-- 751 bytes parent folder | download | duplicates (12)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#!/bin/sh

# systemd generator to create dependency symlink to start
# all tor instances from /etc/tor/instances/

set -eu

if [ $# -lt 1 ]; then
    echo >&2 "Usage: $0 <wantdir> [...]"
    exit 1
fi

GENDIR="$1"
WANTDIR="$1/tor.service.wants"
SERVICEFILE="/lib/systemd/system/tor@.service"
DEFAULTTOR="/lib/systemd/system/tor@default.service"
BASEETC="/etc/tor/instances"

mkdir -p "$WANTDIR"

[ -e "/etc/tor/torrc" ] && ln -s "$DEFAULTTOR" "$WANTDIR/"
for name in $( find "$BASEETC" -mindepth 1 -maxdepth 1 -type d -printf '%f\n' ); do
    if echo "x$name" | grep -q '[^a-zA-Z0-9]' ||
       [ "$name" = "default" ] ; then
        continue
    fi
    [ -e "$BASEETC/$name/torrc" ] && ln -s "$SERVICEFILE" "$WANTDIR/tor@$name.service"
done

exit 0