install.fairie/home/.chezmoiscripts/universal/run_onchange_after_27-tor.tmpl
Brian Zalewski 8f6dee8687 Update 7 files
- /home/.chezmoiscripts/universal/run_onchange_after_14-warp.tmpl
- /home/.chezmoiscripts/universal/run_onchange_after_24-vpn-linux.tmpl
- /home/.chezmoiscripts/universal/run_onchange_after_27-tor.tmpl
- /home/.chezmoiscripts/universal/run_onchange_after_28-privoxy.tmpl
- /home/.chezmoiscripts/universal/run_onchange_after_45-vmware.tmpl
- /home/.chezmoiscripts/universal/run_onchange_before_11-install-docker.tmpl
- /home/dot_config/shell/exports.sh.tmpl
2023-02-16 02:31:52 +00:00

46 lines
1.3 KiB
Cheetah

{{- if and (ne .host.distro.family "windows") (ne .host.work true) -}}
#!/usr/bin/env bash
# tor config hash: {{ include (joinPath .host.home ".config" "tor" "torrc") | sha256sum }}
{{ includeTemplate "universal/profile" }}
{{ includeTemplate "universal/logg" }}
### Apply system variables
if [ -d /Applications ] && [ -d /System ]; then
# macOS
TORRC_CONFIG_DIR=/usr/local/etc/tor
else
# Linux
TORRC_CONFIG_DIR=/etc/tor
fi
TORRC_CONFIG="$TORRC_CONFIG_DIR/torrc"
### Configure Tor
if command -v toron > /dev/null; then
if [ -d "$TORRC_CONFIG_DIR" ]; then
# Copy config
sudo cp -f "${XDG_CONFIG_HOME:-$HOME/.config}/tor/torrc" "$TORRC_CONFIG"
sudo chmod 600 "$TORRC_CONFIG"
# Restart / enable Tor
if [ -d /Applications ] && [ -d /System ]; then
# macOS
brew services restart tor
else
if [[ ! "$(grep Microsoft /proc/version > /dev/null)" ]]; then
# Linux
sudo systemctl enable tor
sudo systemctl restart tor
else
logg info 'Environment is WSL so the Tor systemd service will not be enabled / restarted'
fi
fi
else
logg warn 'The '"$TORRC_CONFIG_DIR"' directory is missing'
fi
else
logg warn '`toron` is missing from the PATH'
fi
{{ end -}}