86218cc831
- /home/.chezmoitemplates/secrets/key-proton-openvpn-password - /home/.chezmoitemplates/secrets/key-proton-openvpn-username - /home/.chezmoitemplates/secrets/key-openvpn-password - /home/.chezmoitemplates/secrets/key-openvpn-username - /home/.chezmoiscripts/universal/run_onchange_after_24-vpn-darwin.tmpl - /home/.chezmoiscripts/universal/run_onchange_after_24-vpn-linux.tmpl - /home/.chezmoi.yaml.tmpl - /docs/CHEZMOI-INTRO.md
31 lines
No EOL
1.2 KiB
Cheetah
31 lines
No EOL
1.2 KiB
Cheetah
{{- if eq .host.distro.family "darwin" -}}
|
|
#!/usr/bin/env bash
|
|
|
|
{{ includeTemplate "universal/profile" }}
|
|
{{ includeTemplate "universal/logg" }}
|
|
|
|
# TODO - What about OpenVPN profiles? Do we have an app to manage OpenVPN connections for macOS?
|
|
|
|
### Backup previous network settings
|
|
if [ -f /Library/Preferences/com.apple.networkextension.plist ]; then
|
|
logg info 'Backing up /Library/Preferences/com.apple.networkextension.plist to /Library/Preferences/com.apple.networkextension.plist.old
|
|
sudo cp -f /Library/Preferences/com.apple.networkextension.plist /Library/Preferences/com.apple.networkextension.plist.old
|
|
else
|
|
logg info 'The /Library/Preferences/com.apple.networkextension.plist file does not exist yet'
|
|
fi
|
|
|
|
### Ensure /etc/wireguard exists
|
|
if [ ! -d /etc/wireguard ]; then
|
|
logg info 'Creating `/etc/wireguard` since it does not exist yet'
|
|
sudo mkdir -p /etc/wireguard
|
|
sudo chmod 600 /etc/wireguard
|
|
fi
|
|
|
|
### Add the WireGuard configurations
|
|
find "${XDG_CONFIG_HOME:-$HOME/.config}" -type f -name "*.conf" | while read WG_CONF; do
|
|
WG_FILE="$(basename "$WG_CONF")"
|
|
logg info 'Adding `'"$WG_FILE"'` to /etc/wireguard'
|
|
sudo cp -f "$WG_CONF" "/etc/wireguard/$WG_FILE"
|
|
done
|
|
|
|
{{ end -}} |