New package: vault-0.10.4
This commit is contained in:
parent
244c63c67d
commit
b3974f4b8f
3 changed files with 32 additions and 0 deletions
8
srcpkgs/vault/files/vault.hcl
Normal file
8
srcpkgs/vault/files/vault.hcl
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
storage "file" {
|
||||||
|
path = "/var/lib/vault"
|
||||||
|
}
|
||||||
|
|
||||||
|
listener "tcp" {
|
||||||
|
address = "127.0.0.1:8200"
|
||||||
|
tls_disable = 1
|
||||||
|
}
|
3
srcpkgs/vault/files/vault/run
Normal file
3
srcpkgs/vault/files/vault/run
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
exec chpst -u _vault vault server -config=/etc/vault.hcl
|
21
srcpkgs/vault/template
Normal file
21
srcpkgs/vault/template
Normal file
|
@ -0,0 +1,21 @@
|
||||||
|
# Template file for 'vault'
|
||||||
|
pkgname=vault
|
||||||
|
version=0.10.4
|
||||||
|
revision=1
|
||||||
|
build_style=go
|
||||||
|
go_import_path="github.com/hashicorp/${pkgname}"
|
||||||
|
short_desc="Tool for securely accessing secrets"
|
||||||
|
maintainer="iaroki <iaroki@protonmail.com>"
|
||||||
|
license="MPL-2.0"
|
||||||
|
homepage="https://www.vaultproject.io/"
|
||||||
|
distfiles="https://github.com/hashicorp/${pkgname}/archive/v${version}.tar.gz"
|
||||||
|
checksum=5f3e4dd0cd1f4cb1e4fc4be38a4839d8683bad62ad5b7a68f1e49f545750b42b
|
||||||
|
system_accounts="_vault"
|
||||||
|
conf_files="/etc/vault.hcl"
|
||||||
|
make_dirs="/var/lib/vault 0700 _vault _vault"
|
||||||
|
|
||||||
|
post_install() {
|
||||||
|
vinstall ${FILESDIR}/vault.hcl 644 etc/
|
||||||
|
vlicense LICENSE
|
||||||
|
vsv vault
|
||||||
|
}
|
Loading…
Reference in a new issue