install.fairie/home/.chezmoiscripts/universal/run_onchange_after_28-privoxy.tmpl
Brian Zalewski 7cbc3bc326 Update 15 files
- /home/.chezmoiscripts/universal/run_onchange_after_30-tor-settings.tmpl
- /home/dot_local/config/privoxy
- /home/dot_local/config/torrc
- /home/.chezmoitemplates/secrets/key-netdata-room-james
- /home/.chezmoiscripts/universal/run_onchange_after_30-samba.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_57-netdata.tmpl
- /home/dot_config/rkhunter/cron
- /home/dot_config/clamd/clamd-freshclam.service
- /home/dot_config/privoxy/config
- /home/dot_config/tor/torrc
- /home/.chezmoitemplates/secrets/key-netdata-room
- /home/.chezmoidata.yaml
- /software.yml
2023-01-29 04:47:57 +00:00

45 lines
1.4 KiB
Cheetah

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