nomad: update to 1.4.3.

This commit is contained in:
Michael Aldridge 2022-12-21 02:11:46 -06:00
parent c1dc168f80
commit a1d55dba6a
2 changed files with 11 additions and 2 deletions

View file

@ -0,0 +1,5 @@
#!/bin/sh
[ -r conf ] && . ./conf
modprobe bridge # Needed for CNI networking
exec 2>&1
exec nomad agent -config /etc/nomad.d/

View file

@ -1,19 +1,23 @@
# Template file for 'nomad' # Template file for 'nomad'
pkgname=nomad pkgname=nomad
version=1.4.2 version=1.4.3
revision=1 revision=1
build_style=go build_style=go
go_import_path="github.com/hashicorp/nomad" go_import_path="github.com/hashicorp/nomad"
go_build_tags="ui release" go_build_tags="ui release"
_git_commit=2aa7e66bdb526e25f59883952d74dad7ea9a014e _git_commit=2aa7e66bdb526e25f59883952d74dad7ea9a014e
go_ldflags="-X ${go_import_path}/version.GitCommit=${_git_commit}" go_ldflags="-X ${go_import_path}/version.GitCommit=${_git_commit}"
depends="cni-plugins"
short_desc="Cluster scheduler designed to easily integrate into existing workflows" short_desc="Cluster scheduler designed to easily integrate into existing workflows"
maintainer="Michael Aldridge <maldridge@voidlinux.org>" maintainer="Michael Aldridge <maldridge@voidlinux.org>"
license="MPL-2.0" license="MPL-2.0"
homepage="https://www.nomadproject.io/" homepage="https://www.nomadproject.io/"
distfiles="https://github.com/hashicorp/nomad/archive/v${version}.tar.gz" distfiles="https://github.com/hashicorp/nomad/archive/v${version}.tar.gz"
checksum=2d1bef5a219d5bafe76402aa2ccd4f57cadf8a28a8706783211d9b4966f1fe9a checksum=0710f6bd787ed6fc98003ce63f5b7b44ae6b6672757f5638812af4ca1bca56fc
make_dirs="/etc/nomad.d 0755 root root
/var/lib/nomad 0755 root root"
post_install() { post_install() {
vlicense LICENSE vlicense LICENSE
vsv nomad
} }