Skip to content

Commit 58734b8

Browse files
committed
services/nomad: Fix repo signing
1 parent 8baddfe commit 58734b8

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

services/nomad/build/root-pkgs-httpd.nomad

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ job "build-mirror" {
2020
volume "root-pkgs" {
2121
type = "host"
2222
source = "root-pkgs"
23-
read_only = false
23+
read_only = true
2424
}
2525

2626
task "httpd" {

services/nomad/build/xbps-sign-repos

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,13 @@ ARCHS="$ARCHS aarch64 aarch64-musl"
1111
for f in ${REPOS}; do
1212
for x in ${ARCHS}; do
1313
export XBPS_TARGET_ARCH=$x
14-
xbps-rindex -v -s \
14+
xbps-rindex -s \
1515
--signedby "Void Linux" --privkey /secrets/id_rsa ${f}
1616
find ${f} -maxdepth 1 -name '*.xbps' -print0 | \
17-
xargs -L 1000 -r0 xbps-rindex -v -S \
17+
xargs -L 1000 -r0 xbps-rindex -S \
1818
--signedby "Void Linux" --privkey /secrets/id_rsa
1919
done
20-
xbps-rindex -v -S \
20+
xbps-rindex -S \
2121
--signedby "Void Linux" --privkey /secrets/id_rsa ${f}/*.noarch.xbps
2222
done
2323

0 commit comments

Comments
 (0)