Add gpg_auth to FreeBSD.
This commit is contained in:
parent
eb2ebb6cd6
commit
22ebc631fc
@ -22,3 +22,4 @@
|
|||||||
- emacs
|
- emacs
|
||||||
- firefox
|
- firefox
|
||||||
- devfs
|
- devfs
|
||||||
|
- ssh_client
|
||||||
|
9
ansible/roles/ssh_client/files/gpg_auth
Normal file
9
ansible/roles/ssh_client/files/gpg_auth
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
#!/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 )"
|
||||||
|
|
||||||
|
exec env SSH_AUTH_SOCK="${HOME}/.gnupg/S.gpg-agent.ssh" "$@"
|
14
ansible/roles/ssh_client/tasks/common.yaml
Normal file
14
ansible/roles/ssh_client/tasks/common.yaml
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
- import_tasks: tasks/freebsd.yaml
|
||||||
|
when: 'os_flavor == "freebsd"'
|
||||||
|
|
||||||
|
- import_tasks: tasks/linux.yaml
|
||||||
|
when: 'os_flavor == "linux"'
|
||||||
|
|
||||||
|
- include_tasks:
|
||||||
|
file: tasks/peruser.yaml
|
||||||
|
apply:
|
||||||
|
become: yes
|
||||||
|
become_user: "{{ initialize_user }}"
|
||||||
|
loop: "{{ users | dict2items | community.general.json_query('[?value.initialize==`true`].key') }}"
|
||||||
|
loop_control:
|
||||||
|
loop_var: initialize_user
|
16
ansible/roles/ssh_client/tasks/freebsd.yaml
Normal file
16
ansible/roles/ssh_client/tasks/freebsd.yaml
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
- name: Install packages
|
||||||
|
package:
|
||||||
|
name:
|
||||||
|
- libfido2 # u2f support for ssh
|
||||||
|
state: present
|
||||||
|
|
||||||
|
- name: Install scripts
|
||||||
|
copy:
|
||||||
|
src: "files/{{ item.src }}"
|
||||||
|
dest: "{{ item.dest }}"
|
||||||
|
mode: 0755
|
||||||
|
owner: root
|
||||||
|
group: wheel
|
||||||
|
loop:
|
||||||
|
- src: gpg_auth
|
||||||
|
dest: /usr/local/bin/gpg_auth
|
6
ansible/roles/ssh_client/tasks/linux.yaml
Normal file
6
ansible/roles/ssh_client/tasks/linux.yaml
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
# - name: Install packages
|
||||||
|
# pacman:
|
||||||
|
# name:
|
||||||
|
# - foo
|
||||||
|
# state: present
|
||||||
|
# update_cache: true
|
1
ansible/roles/ssh_client/tasks/main.yaml
Normal file
1
ansible/roles/ssh_client/tasks/main.yaml
Normal file
@ -0,0 +1 @@
|
|||||||
|
- import_tasks: tasks/common.yaml
|
29
ansible/roles/ssh_client/tasks/peruser.yaml
Normal file
29
ansible/roles/ssh_client/tasks/peruser.yaml
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
- include_role:
|
||||||
|
name: per_user
|
||||||
|
|
||||||
|
# - name: Create directories
|
||||||
|
# file:
|
||||||
|
# name: "{{ account_homedir.stdout }}/{{ item }}"
|
||||||
|
# state: directory
|
||||||
|
# mode: 0700
|
||||||
|
# owner: "{{ account_name.stdout }}"
|
||||||
|
# group: "{{ group_name.stdout }}"
|
||||||
|
# loop:
|
||||||
|
# - ".config/foo"
|
||||||
|
|
||||||
|
# - name: Copy files
|
||||||
|
# copy:
|
||||||
|
# src: "files/{{ item.src }}"
|
||||||
|
# dest: "{{ account_homedir.stdout }}/{{ item.dest }}"
|
||||||
|
# mode: 0600
|
||||||
|
# owner: "{{ account_name.stdout }}"
|
||||||
|
# group: "{{ group_name.stdout }}"
|
||||||
|
# loop:
|
||||||
|
# - src: foo.conf
|
||||||
|
# dest: .config/foo/foo.conf
|
||||||
|
|
||||||
|
- import_tasks: tasks/peruser_freebsd.yaml
|
||||||
|
when: 'os_flavor == "freebsd"'
|
||||||
|
|
||||||
|
- import_tasks: tasks/peruser_linux.yaml
|
||||||
|
when: 'os_flavor == "linux"'
|
0
ansible/roles/ssh_client/tasks/peruser_freebsd.yaml
Normal file
0
ansible/roles/ssh_client/tasks/peruser_freebsd.yaml
Normal file
0
ansible/roles/ssh_client/tasks/peruser_linux.yaml
Normal file
0
ansible/roles/ssh_client/tasks/peruser_linux.yaml
Normal file
Loading…
Reference in New Issue
Block a user