rpmbuilder/rpms/unkin-ca-certificates/nfpm.yaml
Ben Vincent b8b181e684
All checks were successful
Build / build-9 (pull_request) Successful in 22s
Build / build-8 (pull_request) Successful in 1m49s
fix: resolve dependency errors
- unkin-ca-certificates fails during kickstart as its required packages are missing
- puppet-initial doesnt need to include unkin-ca-certificates
2025-07-13 21:04:14 +10:00

39 lines
818 B
YAML

# nfpm.yaml
name: unkin-ca-certificates
version: ${PACKAGE_VERSION}
release: ${PACKAGE_RELEASE}
arch: amd64
platform: linux
section: default
priority: extra
description: "ca-certificates for the unkin site"
maintainer: Unkin
homepage: https://vault.query.consul:8200
license: Apache-2.0
disable_globbing: false
depends:
- ca-certificates
replaces:
- unkin-ca-certificates
# Files to include in the package
contents:
- src: /app/UNKIN_ROOTCA_2024.crt
dst: /etc/pki/ca-trust/source/anchors/UNKIN_ROOTCA_2024.crt
file_info:
mode: 0755
owner: root
group: root
# Scripts to run during installation/removal (optional)
scripts:
postinstall: ./scripts/postinstall.sh
# preinstall: ./scripts/preinstall.sh
# preremove: ./scripts/preremove.sh
# postremove: ./scripts/postremove.sh