Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] routinator: integrate better into Void Linux
@ 2022-07-04 21:08 klarasm
  2022-08-21 17:50 ` [PR PATCH] [Updated] " klarasm
                   ` (32 more replies)
  0 siblings, 33 replies; 34+ messages in thread
From: klarasm @ 2022-07-04 21:08 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 647 bytes --]

There is a new pull request by klarasm against master on the void-packages repository

https://github.com/klarasm/void-packages routinator-integration
https://github.com/void-linux/void-packages/pull/37848

routinator: integrate better into Void Linux
Creating a draft PR to implement some improvements in how the package integrates into Void Linux as suggested in #35971.

- [x] Create a runit service
- [ ] Build and include documentation (or maybe do a separate doc sub-package)

Feel free to comment any other improvements that could be included.

A patch file from https://github.com/void-linux/void-packages/pull/37848.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-routinator-integration-37848.patch --]
[-- Type: text/x-diff, Size: 2915 bytes --]

From 6ffdaa81270066c07005305da90a406bbe16ed31 Mon Sep 17 00:00:00 2001
From: Klara Modin <klarasmodin@gmail.com>
Date: Sun, 3 Jul 2022 23:46:51 +0200
Subject: [PATCH] routinator: add runit service

- create a system user/group
- add install message with instructions to initialize the service
---
 srcpkgs/routinator/INSTALL.msg          | 14 ++++++++++++++
 srcpkgs/routinator/files/routinator/run |  2 ++
 srcpkgs/routinator/template             |  6 +++++-
 3 files changed, 21 insertions(+), 1 deletion(-)
 create mode 100644 srcpkgs/routinator/INSTALL.msg
 create mode 100755 srcpkgs/routinator/files/routinator/run

diff --git a/srcpkgs/routinator/INSTALL.msg b/srcpkgs/routinator/INSTALL.msg
new file mode 100644
index 000000000000..256811ee3d6e
--- /dev/null
+++ b/srcpkgs/routinator/INSTALL.msg
@@ -0,0 +1,14 @@
+If this is your first time using routinator as a system service it needs to
+be initialized.
+
+If you want to use the ARIN TAL, you must read and agree to the ARIN Relying
+Party Agreement (RPA) available at
+https://www.arin.net/resources/manage/rpki/rpa.pdf
+
+Use following to intitialize and agree to the ARIN TAL:
+sudo -u _routinator sh -c 'cd /var/lib/routinator && \
+	routinator -c /etc/routinator/routinator.conf init --accept-arin-rpa'
+
+Otherwise use following to initialize and skip the ARIN TAL:
+sudo -u _routinator sh -c 'cd /var/lib/routinator && \
+	routinator -c /etc/routinator/routinator.conf init --skip-tal=arin'
diff --git a/srcpkgs/routinator/files/routinator/run b/srcpkgs/routinator/files/routinator/run
new file mode 100755
index 000000000000..9bfb6265b058
--- /dev/null
+++ b/srcpkgs/routinator/files/routinator/run
@@ -0,0 +1,2 @@
+#!/bin/sh
+exec routinator --config /etc/routinator/routinator.conf server --user=_routinator --group=_routinator 2>&1
diff --git a/srcpkgs/routinator/template b/srcpkgs/routinator/template
index ce1f0b16e6c8..fafe6b920341 100644
--- a/srcpkgs/routinator/template
+++ b/srcpkgs/routinator/template
@@ -1,7 +1,7 @@
 # Template file for 'routinator'
 pkgname=routinator
 version=0.11.2
-revision=1
+revision=2
 build_style=cargo
 depends="rsync"
 short_desc="Resource Public Key Infrastructure (RPKI) validator"
@@ -12,6 +12,9 @@ changelog="https://raw.githubusercontent.com/NLnetLabs/routinator/main/Changelog
 distfiles="https://github.com/NLnetLabs/routinator/archive/v${version}.tar.gz"
 conf_files="/etc/routinator/routinator.conf"
 checksum=00f825c53168592da0285e8dbd228018e77248d458214a2c0f86cd0ca45438f5
+system_accounts="_routinator"
+_routinator_homedir="/var/lib/routinator"
+make_dirs="/var/lib/routinator 0755 _routinator _routinator"
 
 case "$XBPS_TARGET_MACHINE" in
 	x86_64*|i686*|arm*|aarch64*) ;;
@@ -19,6 +22,7 @@ case "$XBPS_TARGET_MACHINE" in
 esac
 
 post_install() {
+	vsv routinator
 	vdoc README.md
 	vman doc/routinator.1
 	vinstall etc/routinator.conf.system-service 0644 etc/routinator routinator.conf

^ permalink raw reply	[flat|nested] 34+ messages in thread

end of thread, other threads:[~2023-01-12 16:07 UTC | newest]

Thread overview: 34+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-07-04 21:08 [PR PATCH] routinator: integrate better into Void Linux klarasm
2022-08-21 17:50 ` [PR PATCH] [Updated] " klarasm
2022-08-21 17:55 ` klarasm
2022-08-21 17:58 ` Duncaen
2022-08-21 18:18 ` [PR PATCH] [Updated] " klarasm
2022-08-21 22:21 ` klarasm
2022-08-21 22:44 ` klarasm
2022-08-21 22:58 ` klarasm
2022-08-21 23:06 ` Duncaen
2022-08-21 23:06 ` Duncaen
2022-08-21 23:10 ` [PR REVIEW] " paper42
2022-08-21 23:12 ` klarasm
2022-08-21 23:14 ` [PR REVIEW] " klarasm
2022-08-21 23:19 ` [PR PATCH] [Updated] " klarasm
2022-08-22  0:19 ` klarasm
2022-08-22  0:19 ` klarasm
2022-08-22  0:53 ` [PR PATCH] [Updated] " klarasm
2022-09-28 21:32 ` klarasm
2022-09-30 19:50 ` klarasm
2022-10-22 12:04 ` klarasm
2022-11-09 12:11 ` klarasm
2022-11-13 15:47 ` [PR PATCH] [Updated] " klarasm
2022-11-13 15:50 ` klarasm
2022-11-13 16:14 ` klarasm
2022-11-15 18:31 ` [PR PATCH] [Updated] " klarasm
2022-11-15 18:45 ` klarasm
2022-11-15 18:49 ` klarasm
2023-01-11 16:36 ` [PR PATCH] [Updated] routinator: update to 0.12.0 and add runit service klarasm
2023-01-11 16:57 ` routinator: update to 0.12.1 " klarasm
2023-01-11 23:13 ` [PR REVIEW] " paper42
2023-01-11 23:35 ` [PR PATCH] [Updated] " klarasm
2023-01-11 23:36 ` [PR REVIEW] " klarasm
2023-01-12 16:07 ` paper42
2023-01-12 16:07 ` [PR PATCH] [Merged]: " paper42

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).