machine_setup/ansible/roles/ssh_client/files/gpg_auth_linux

10 lines
285 B
Plaintext
Raw Normal View History

2022-10-27 05:43:04 +00:00
#!/usr/bin/env bash
#
# Wrapper to set the SSH auth socket to GPG for services that do not
# yet support security key ssh keys
set -euo pipefail
IFS=$'\n\t'
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
2023-02-25 23:16:34 +00:00
exec env SSH_AUTH_SOCK="${XDG_RUNTIME_DIR}/gnupg/S.gpg-agent.ssh" "$@"