mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-25 21:07:18 +00:00
eb1d122aec
* Basic build targets for debian packages * Add comments to config files * Harden beacon-chain systemd service * Add install scripts to set users and folders up * Rename bazel target, fix service files * Extra service hardening, cleanup install scripts * Fix linting issues * //shared:version_file run local only * gazelle Co-authored-by: Nishant Das <nishdas93@gmail.com> Co-authored-by: Raul Jordan <raul@prysmaticlabs.com> Co-authored-by: Preston Van Loon <preston@prysmaticlabs.com>
52 lines
1.1 KiB
Python
52 lines
1.1 KiB
Python
load("@rules_pkg//:pkg.bzl", "pkg_deb", "pkg_tar")
|
|
|
|
pkg_tar(
|
|
name = "validator-bin",
|
|
srcs = [
|
|
"//cmd/validator",
|
|
],
|
|
mode = "0755",
|
|
package_dir = "/usr/bin",
|
|
)
|
|
|
|
pkg_tar(
|
|
name = "validator-config",
|
|
srcs = glob(["validator.yaml"]),
|
|
mode = "0640",
|
|
package_dir = "/etc/prysm",
|
|
)
|
|
|
|
pkg_tar(
|
|
name = "validator-service",
|
|
srcs = glob(["prysm-validator.service"]),
|
|
mode = "0640",
|
|
package_dir = "/usr/lib/systemd/system",
|
|
)
|
|
|
|
pkg_tar(
|
|
name = "debian-data",
|
|
extension = "tar.gz",
|
|
deps = [
|
|
":validator-bin",
|
|
":validator-config",
|
|
":validator-service",
|
|
],
|
|
)
|
|
|
|
pkg_deb(
|
|
name = "deb",
|
|
architecture = "amd64",
|
|
conffiles = [
|
|
"etc/prysm/validator.yaml",
|
|
],
|
|
data = ":debian-data",
|
|
description = "Prysm Validator Client - Ethereum 2.0 block consensus",
|
|
homepage = "https://prysmaticlabs.com/",
|
|
maintainer = "Prysmatic Labs <contact@prysmaticlabs.com>",
|
|
package = "prysm-validator",
|
|
postinst = "postinst.sh",
|
|
preinst = "preinst.sh",
|
|
version_file = "//shared:version_file",
|
|
visibility = ["//validator:__pkg__"],
|
|
)
|