The AUR package prometheus-x509-certificate-exporter
Go to file
Markus Pesch 9e5422af84
continuous-integration/drone/push Build is passing Details
fix: upgrade to 3.13.0
2024-04-10 12:52:20 +02:00
.SRCINFO fix: upgrade to 3.13.0 2024-04-10 12:52:20 +02:00
.drone.yml fix(ci): init 2023-12-03 00:09:18 +01:00
.editorconfig fix(ci): init 2023-12-03 00:09:18 +01:00
.gitignore fix: ignore zip files 2024-04-10 12:51:38 +02:00
.markdownlint.yaml fix(ci): init 2023-12-03 00:09:18 +01:00
PKGBUILD fix: upgrade to 3.13.0 2024-04-10 12:52:20 +02:00
README.md doc(README): adjust indentation 2023-12-03 00:13:14 +01:00
prometheus-x509-certificate-exporter fix: sysusers and extra args 2023-06-13 19:18:47 +02:00
renovate.json fix(renovate): remove automerge options 2024-01-21 14:41:32 +01:00
systemd.service fix: extra args 2023-06-13 20:02:06 +02:00

README.md

prometheus-x509-certificate-exporter

AUR version Build Status AUR votes

This repository contains build files to build the Arch Linux package prometheus-x509-certificate-exporter. Instead of building the package yourself, it can also be obtained from the following private repository. More detailed are described here.

Build

Clone this repository and use makepkg to build the package by yourself. For example:

git clone https://aur.archlinux.org/prometheus-x509-certificate-exporter.git
cd prometheus-x509-certificate-exporter
makepkg

Yay

The build files are also available via AUR and can be installed via an AUR helper like yay.

yay --sync --aur prometheus-x509-certificate-exporter

Obtaining pre-built packages from a repository

Instead of building the packages locally, it is also possible to configure an additional repository to install the package directly via pacman. The following commands are used to create the repository, configure the GPG key to verify the packages and install the package:

# Create drop-in directory
sudo mkdir --parents /etc/pacman.d/repos

# Create configuration of the repository 'volker.raschek'
sudo tee /etc/pacman.d/repos/volker.raschek.conf > /dev/null <<'EOF'
[volker.raschek]
SigLevel = PackageRequired TrustedOnly
Include = /etc/pacman.d/repos/volker.raschek.list
EOF

# Create mirror list of the repository 'volker.raschek'
sudo tee /etc/pacman.d/repos/volker.raschek.list > /dev/null <<'EOF'
Server = https://aur.cryptic.systems/$repo/$arch
EOF

# Import gpg key of the repository 'volker.raschek'
sudo pacman-key --keyserver hkps://keys.openpgp.org --recv-keys 9B146D11A9ED6CA7E279EB1A852BCC170D81A982

# Extend existing pacman configuration of the repository 'volker.raschek'
sudo echo "Include = /etc/pacman.d/repos/*.conf" >> /etc/pacman.conf

# Update pacman cache
sudo pacman --sync --refresh

# Install the package and receive updates directly via pacman :)
sudo pacman --sync prometheus-x509-certificate-exporter