Use latest packages on FreeBSD.

This commit is contained in:
Tom Alexander 2022-11-25 15:02:15 -05:00
parent 46672786ab
commit 11ef6647f1
Signed by: talexander
GPG Key ID: D3A179C9A53C0EDE
2 changed files with 33 additions and 5 deletions

View File

@ -0,0 +1,7 @@
FreeBSD: {
url: "pkg+http://pkg.FreeBSD.org/${ABI}/latest",
mirror_type: "srv",
signature_type: "fingerprints",
fingerprints: "/usr/share/keys/pkg",
enabled: yes
}

View File

@ -1,5 +1,26 @@
# - name: Install packages
# package:
# name:
# - foo
# state: present
- name: Create directories
file:
name: "{{ item }}"
state: directory
mode: 0755
owner: root
group: wheel
loop:
- /usr/local/etc/pkg
- /usr/local/etc/pkg/repos
- name: Install Configuration
register: changed_config
copy:
src: "files/{{ item.src }}"
dest: "{{ item.dest }}"
mode: 0644
owner: root
group: wheel
loop:
- src: FreeBSD.conf
dest: /usr/local/etc/pkg/repos/FreeBSD.conf
# - name: Replace all packages with packages from new repo
# command: pkg upgrade -f -y
# when: changed_config.changed