Files
PrivLab-Archive-Keyring/privlab-archive-keyring/DEBIAN/postinst
Cantibra ea01eecc40
All checks were successful
PrivLab Archive Keyring / PrivLab Archive Keyring (amd64, bookworm trixie noble, main) (push) Successful in 11s
PrivLab Archive Keyring / PrivLab Archive Keyring (arm64, bookworm trixie noble, main) (push) Successful in 11s
Initialize Git Repository: 'PrivLab-Archive-Keyring'
2026-03-19 14:16:08 +01:00

14 lines
226 B
Bash

#!/usr/bin/sh
set -e
set -u
. '/etc/os-release'
case "${1}" in
configure)
/usr/bin/sed --in-place "s/VERSION_CODENAME/${VERSION_CODENAME}/" '/etc/apt/sources.list.d/privlab.sources' || \
/usr/bin/true
;;
esac