Add a poudriere build for the home server.

This commit is contained in:
Tom Alexander
2024-04-11 19:57:02 -04:00
parent 6d198d290d
commit ef18e94ff8
12 changed files with 141 additions and 9 deletions

View File

@@ -30,6 +30,18 @@
when: ssh_hosts is defined
loop: "{{ ssh_hosts }}"
- name: Compress all SSH connections by default
blockinfile:
path: "{{ account_homedir.stdout }}/.ssh/config"
marker: "# {mark} ANSIBLE MANAGED BLOCK compression"
create: true
mode: 0600
owner: "{{ account_name.stdout }}"
group: "{{ group_name.stdout }}"
block: |
Host *
Compression yes
- import_tasks: tasks/peruser_freebsd.yaml
when: 'os_flavor == "freebsd"'