benvin/replace_release_el8 #77

Merged
unkinben merged 3 commits from benvin/replace_release_el8 into master 2026-01-17 20:39:07 +11:00
6 changed files with 25 additions and 13 deletions
Showing only changes of commit e09d0c4bc6 - Show all commits

View File

@ -1,11 +1,11 @@
name: incus name: incus
github: lxc/incus github: lxc/incus
description: incus package description: Powerful system container and virtual machine manager
arch: amd64 arch: amd64
platform: linux platform: linux
maintainer: '' maintainer: unkin
homepage: '' homepage: https://linuxcontainers.org/incus/
license: '' license: Apache-2.0
builds: builds:
- repository: - repository:
- almalinux/el9 - almalinux/el9

View File

@ -1,11 +1,11 @@
name: jellyfin-ffmpeg-bin name: jellyfin-ffmpeg-bin
github: jellyfin/jellyfin-ffmpeg github: jellyfin/jellyfin-ffmpeg
description: jellyfin-ffmpeg-bin package description: FFmpeg binary package optimized for Jellyfin media server
arch: amd64 arch: amd64
platform: linux platform: linux
maintainer: '' maintainer: unkin
homepage: '' homepage: https://github.com/jellyfin/jellyfin-ffmpeg
license: '' license: GPL-3.0
builds: builds:
- repository: - repository:
- almalinux/el8 - almalinux/el8

View File

@ -1,4 +1,5 @@
name: openbao-plugins name: openbao-plugins
github: openbao/openbao-plugins
description: Meta package that installs all OpenBao plugins description: Meta package that installs all OpenBao plugins
arch: amd64 arch: amd64
platform: linux platform: linux

View File

@ -1,3 +1,6 @@
#!/usr/bin/env bash #!/usr/bin/env bash
# Only run on fresh install, not upgrade
if [ "$1" -eq 1 ]; then
systemctl daemon-reload systemctl daemon-reload
systemctl enable puppet-initial.service systemctl enable puppet-initial.service
fi

View File

@ -1,3 +1,6 @@
#!/usr/bin/env bash #!/usr/bin/env bash
# Only run on fresh install, not upgrade
if [ "$1" -eq 1 ]; then
systemctl stop puppet systemctl stop puppet
systemctl disable puppet systemctl disable puppet
fi

View File

@ -105,7 +105,7 @@ METADATA_SCHEMA = {
'regex': r'^[a-zA-Z0-9\-_\.:\/]+$' 'regex': r'^[a-zA-Z0-9\-_\.:\/]+$'
}, },
'release': { 'release': {
'type': 'string', 'type': ['string', 'integer', 'float'],
'required': True, 'required': True,
'empty': False 'empty': False
}, },
@ -117,6 +117,11 @@ METADATA_SCHEMA = {
} }
} }
} }
},
'github_release_pattern': {
'type': 'string',
'required': False,
'empty': False
} }
} }