Update 3 files

- /.local/share/chezmoi/home/.chezmoiscripts/universal/run_onchange_after_18-install-sdkman
- /.local/share/chezmoi/home/.chezmoiscripts/universal/run_onchange_after_18-install-sdkman.tmpl
- /.local/share/chezmoi/home/.chezmoiscripts/universal/run_onchange_after_59-connect-tailscale
This commit is contained in:
Brian Zalewski 2022-12-24 10:48:28 +00:00
parent 60f3e4cc1d
commit a166bacd02
2 changed files with 1 additions and 1 deletions

View file

@ -1,7 +1,7 @@
#!/usr/bin/env bash #!/usr/bin/env bash
### Connect to Tailscale network ### Connect to Tailscale network
if command -v tailscale > /dev/null && [ "{{ .user.TAILSCALE_AUTH_KEY }}" != "" ]; then if command -v tailscale > /dev/null && [ {{ .user.TAILSCALE_AUTH_KEY }} != "" ]; then
logg info 'Connecting to Tailscale with user-defined authentication key' logg info 'Connecting to Tailscale with user-defined authentication key'
tailscale up --authkey={{ .user.TAILSCALE_AUTH_KEY }} && logg success 'Connected to Tailscale network' tailscale up --authkey={{ .user.TAILSCALE_AUTH_KEY }} && logg success 'Connected to Tailscale network'
fi fi