5fb08937ba
ci/woodpecker/pr/build-fedora43 Pipeline was successful
ci/woodpecker/pr/build-fedora44 Pipeline was successful
ci/woodpecker/pr/build-fedora42 Pipeline was successful
ci/woodpecker/pr/pre-commit Pipeline was successful
ci/woodpecker/pr/build-almalinux9 Pipeline was successful
ci/woodpecker/pr/build-almalinux8 Pipeline was successful
The estate migrated from Puppet to OpenVox. puppet-agent no longer exists as a package name in the rpm-vendor repos, so kickstart installs of puppet-initial fail dependency resolution with "nothing provides puppet-agent", blocking host provisioning. - Change puppet-initial's dependency from puppet-agent to openvox-agent. - Bump el8/el9 build version 1.0.4 -> 1.0.5 so a new RPM is published (deploy dedup skips identical filenames). Claude-Session: https://claude.ai/code/session_01JUoARVdmhxKQHyyyp1pxeT
48 lines
1.1 KiB
YAML
48 lines
1.1 KiB
YAML
# nfpm.yaml
|
|
|
|
name: ${PACKAGE_NAME}
|
|
version: ${PACKAGE_VERSION}
|
|
release: ${PACKAGE_RELEASE}
|
|
arch: ${PACKAGE_ARCH}
|
|
platform: ${PACKAGE_PLATFORM}
|
|
section: default
|
|
priority: extra
|
|
description: "${PACKAGE_DESCRIPTION}"
|
|
|
|
maintainer: ${PACKAGE_MAINTAINER}
|
|
license: ${PACKAGE_LICENSE}
|
|
|
|
disable_globbing: false
|
|
|
|
depends:
|
|
- openvox-agent
|
|
|
|
# Files to include in the package
|
|
contents:
|
|
- src: /app/resources/puppet-initial
|
|
dst: /usr/local/bin/puppet-initial
|
|
file_info:
|
|
mode: 0755
|
|
owner: root
|
|
group: root
|
|
- src: /app/resources/puppet-initial.service
|
|
dst: /usr/lib/systemd/system/puppet-initial.service
|
|
file_info:
|
|
mode: 0644
|
|
owner: root
|
|
group: root
|
|
- src: /app/resources/puppet-initial.sysconfig
|
|
dst: /etc/sysconfig/puppet-initial
|
|
type: config|noreplace
|
|
file_info:
|
|
mode: 0644
|
|
owner: root
|
|
group: root
|
|
|
|
# Scripts to run during installation/removal (optional)
|
|
scripts:
|
|
postinstall: /app/resources/scripts/postinstall.sh
|
|
preremove: /app/resources/scripts/preremove.sh
|
|
postremove: /app/resources/scripts/postremove.sh
|
|
preinstall: /app/resources/scripts/preinstall.sh
|