install.fairie/home/dot_ssh/endlessh/run_onchanges_after_endlessh.tmpl
Brian Zalewski 09c37c0269 Update 11 files
- /home/.chezmoidata.yaml
- /home/.chezmoiscripts/universal/run_onchange_after_28-privoxy.tmpl
- /home/.chezmoiscripts/universal/run_onchange_after_27-tor.tmpl
- /home/dot_ssh/endlessh/run_onchanges_after_endlessh.tmpl
- /home/dot_ssh/endlessh/config.tmpl
- /home/.chezmoi.yaml.tmpl
- /home/dot_local/config/privoxy.sample
- /home/dot_local/config/torrc.sample
- /home/dot_local/config/torrc
- /home/dot_local/config/privoxy
- /software.yml
2023-01-29 03:49:06 +00:00

31 lines
1.1 KiB
Cheetah

{{- if eq .host.distro.family "linux" }}
#!/usr/bin/env bash
# endlessh config hash: {{ include (joinPath .host.home ".ssh" "endlessh" "config") | sha256sum }}
{{ includeTemplate "universal/profile" }}
{{ includeTemplate "universal/logg" }}
### Update /etc/endlessh/config if environment is not WSL
if [[ ! "$(grep Microsoft /proc/version)" ]]; then
if command -v endlessh > /dev/null; then
if [ -d /etc/endlessh ]; then
logg info 'Copying ~/.ssh/endlessh/config to /etc/endlessh/config'
sudo cp -f "$HOME/.ssh/endlessh/config" /etc/endlessh/config
### Restart / enable Endlessh
logg info 'Enabling the `endlessh` service'
sudo systemctl enable endlessh
logg info 'Restarting the `endlessh` service'
sudo systemctl restart endlessh
else
logg warn 'The /etc/endlessh folder does not exist'
fi
else
logg info 'Skipping Endlessh configuration because the `endlessh` executable is not available in the PATH'
fi
else
logg info 'Skipping Endlessh configuration since environment is WSL'
fi
{{ end -}}